yacreader/common/library_item.h
Luis Ángel San Martín b4ea359bed added: QsLog to YACReader
added: error log messages to client<->server local comunication
2014-03-23 10:31:32 +01:00

16 lines
219 B
C++

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