00001 #ifndef RESOURCETYPE_H
00002 #define RESOURCETYPE_H
00003
00004 #include "type.h"
00005
00006 namespace domain
00007 {
00008
00009 class TaskManagerData;
00010
00023 class DOMAIN_EXPORT ResourceType : public Type
00024 {
00025 Q_OBJECT
00026 friend class TaskManagerData;
00027
00028 private:
00029
00030
00034 ResourceType(const QString& id, const QString& name);
00035 ~ResourceType();
00036 };
00037
00038 }
00039
00040 #endif