opimmaintainer.h
Go to the documentation of this file.00001 #ifndef OPIE_PIM_MAINTAINER_H 00002 #define OPIE_PIM_MAINTAINER_H 00003 00004 #include <qstring.h> 00005 00009 class OPimMaintainer { 00010 public: 00011 enum Mode { Undefined = -1, 00012 Nothing = 0, 00013 Responsible, 00014 DoneBy, 00015 Coordinating, 00016 }; 00017 OPimMaintainer( int mode = Undefined, int uid = 0); 00018 OPimMaintainer( const OPimMaintainer& ); 00019 ~OPimMaintainer(); 00020 00021 OPimMaintainer &operator=( const OPimMaintainer& ); 00022 bool operator==( const OPimMaintainer& ); 00023 bool operator!=( const OPimMaintainer& ); 00024 00025 00026 int mode()const; 00027 int uid()const; 00028 00029 void setMode( int mode ); 00030 void setUid( int uid ); 00031 00032 private: 00033 int m_mode; 00034 int m_uid; 00035 class Private; 00036 Private *d; 00037 00038 }; 00039 00040 #endif
