diff options
author | Lukáš Lalinský <lalinsky@gmail.com> | 2008-11-23 22:44:06 +0100 |
---|---|---|
committer | Lukáš Lalinský <lalinsky@gmail.com> | 2008-11-23 22:44:06 +0100 |
commit | 5da39fc03fe42f7e4b572374e983ea1afb80033d (patch) | |
tree | 4d6fcca41e63b37f8c77577c55d89b510fe959fe /databasemodelitem.h | |
download | dbmodel-5da39fc03fe42f7e4b572374e983ea1afb80033d.tar.xz |
Initial commit
Diffstat (limited to 'databasemodelitem.h')
-rw-r--r-- | databasemodelitem.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/databasemodelitem.h b/databasemodelitem.h new file mode 100644 index 0000000..52dc3d4 --- /dev/null +++ b/databasemodelitem.h @@ -0,0 +1,16 @@ +#ifndef DATABASEMODELITEM_H +#define DATABASEMODELITEM_H + +#include <QGraphicsItem> + +class DatabaseModelItem : public QGraphicsItem +{ +public: + enum { + Table = UserType + 1, + Relation + }; + DatabaseModelItem(QGraphicsItem *parent = 0); +}; + +#endif |