mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
17 lines
230 B
C++
17 lines
230 B
C++
#ifndef __LIBRARY_ITEM_H
|
|
#define __LIBRARY_ITEM_H
|
|
|
|
#include <QObject>
|
|
|
|
class LibraryItem
|
|
{
|
|
public:
|
|
virtual bool isDir() const = 0;
|
|
QString name;
|
|
QString path;
|
|
qulonglong parentId;
|
|
qulonglong id;
|
|
};
|
|
|
|
#endif
|