00001 #include "usertype.h"
00002
00003 using namespace domain;
00004
00005 UserType::UserType(const QString& id, const QString& name) : Type(id, name)
00006 {
00007 }
00008
00009 UserType::~UserType()
00010 {
00011 }
00012
00013 AdminUserType::AdminUserType() : UserType("admin", "Administrator")
00014 {
00015 }
00016
00017 domain::AdminUserType::~AdminUserType()
00018 {
00019 }