yacreader/common/library_item.h
Daisuke Cato a08b5f8af0 reimplementaion of fix for QColorDialog on macOS Sierra bug.
doesn't use destructor because destructor causes another crash.
2016-10-22 19:14:07 +09:00

19 lines
309 B
C++

#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