mirror of
https://github.com/YACReader/yacreader
synced 2025-07-22 15:04:40 -04:00
modificado el script de mac os x para generar un .dmg
This commit is contained in:
17
YACReaderLibrary/db/library_item.h
Normal file
17
YACReaderLibrary/db/library_item.h
Normal file
@ -0,0 +1,17 @@
|
||||
#ifndef __LIBRARY_ITEM_H
|
||||
#define __LIBRARY_ITEM_H
|
||||
|
||||
#include <QSqlDatabase>
|
||||
|
||||
class LibraryItem
|
||||
{
|
||||
public:
|
||||
virtual bool isDir() = 0;
|
||||
virtual void removeFromDB(QSqlDatabase & db) = 0;
|
||||
QString name;
|
||||
QString path;
|
||||
qulonglong parentId;
|
||||
qulonglong id;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user