You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
668 B
33 lines
668 B
14 years ago
|
/*
|
||
|
* UBMetadataDcSubsetAdaptor.h
|
||
|
*
|
||
|
* Created on: Nov 27, 2008
|
||
|
* Author: luc
|
||
|
*/
|
||
|
|
||
|
#ifndef UBMETADATADCSUBSETADAPTOR_H_
|
||
|
#define UBMETADATADCSUBSETADAPTOR_H_
|
||
|
|
||
|
#include <QtGui>
|
||
|
|
||
|
class UBDocumentProxy;
|
||
|
|
||
|
class UBMetadataDcSubsetAdaptor
|
||
|
{
|
||
|
public:
|
||
|
UBMetadataDcSubsetAdaptor();
|
||
|
virtual ~UBMetadataDcSubsetAdaptor();
|
||
|
|
||
|
static void persist(UBDocumentProxy* proxy);
|
||
|
static QMap<QString, QVariant> load(QString pPath);
|
||
|
|
||
|
static const QString nsRdf;
|
||
|
static const QString nsDc;
|
||
|
static const QString metadataFilename;
|
||
|
|
||
|
static const QString rdfIdentifierDomain;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif /* UBMETADATADCSUBSETADAPTOR_H_ */
|