mirror of
https://github.com/YACReader/yacreader
synced 2025-07-19 05:24:57 -04:00
Headless server: simplify system config logger
This commit is contained in:
18
common/library_item.h
Normal file
18
common/library_item.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef __LIBRARY_ITEM_H
|
||||
#define __LIBRARY_ITEM_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
class LibraryItem : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
virtual bool isDir() = 0;
|
||||
LibraryItem & operator=(const LibraryItem & other);
|
||||
QString name;
|
||||
QString path;
|
||||
qulonglong parentId;
|
||||
qulonglong id;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user