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.
28 lines
698 B
28 lines
698 B
#ifndef USBASEMETADATA_H
|
|
#define USBASEMETADATA_H
|
|
|
|
#include <QObject>
|
|
|
|
/*************************************************************************************************/
|
|
/**
|
|
* @brief This class is the base class for all metadata through the system
|
|
* @author Hessamoddin Hediyehloo(H-4nd-H)
|
|
* @date 2020/10/04(1399/7/13)
|
|
*/
|
|
/*************************************************************************************************/
|
|
class UsBaseMetadata
|
|
{
|
|
private:
|
|
QString _name;
|
|
QString _ownerName;
|
|
|
|
public:
|
|
UsBaseMetadata(QString name, QString ownerName);
|
|
UsBaseMetadata();
|
|
QString getName() const;
|
|
QString getOwnerName() const;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(UsBaseMetadata)
|
|
|
|
#endif //USBASEMETADATA_H
|
|
|