yacreader/common/library_item.h
Luis Ángel San Martín 581592909d merged develop
2016-04-19 23:19:39 +02:00

19 lines
318 B
C++

#ifndef __LIBRARY_ITEM_H
#define __LIBRARY_ITEM_H
#include <QObject>
class LibraryItem : public QObject
{
Q_OBJECT
public:
virtual bool isDir() const = 0;
LibraryItem & operator=(const LibraryItem & other);
QString name;
QString path;
qulonglong parentId;
qulonglong id;
};
#endif