mirror of
https://github.com/YACReader/yacreader
synced 2026-02-07 15:50:13 -05:00
yacreaderlibrary_ru.ts
Minor corrections in Russian translation.
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