mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
16 lines
219 B
C++
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 |