mirror of
https://github.com/YACReader/yacreader
synced 2026-02-20 05:53:06 -05:00
Update precompiled pdfium for mac to chromium/3071 and add version info file with minimal build instructions
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