summaryrefslogtreecommitdiff
path: root/libopie/pim/opimmaintainer.h
authormickeyl <mickeyl>2004-11-16 19:14:18 (UTC)
committer mickeyl <mickeyl>2004-11-16 19:14:18 (UTC)
commitea3945a9bd8f9830f70b1efa133f9df13b19362f (patch) (side-by-side diff)
treef2ea22cc50e9aa8aa73ee7dea148f41c563c9666 /libopie/pim/opimmaintainer.h
parent1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff)
downloadopie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/opimmaintainer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimmaintainer.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/libopie/pim/opimmaintainer.h b/libopie/pim/opimmaintainer.h
deleted file mode 100644
index 793d066..0000000
--- a/libopie/pim/opimmaintainer.h
+++ b/dev/null
@@ -1,40 +0,0 @@
-#ifndef OPIE_PIM_MAINTAINER_H
-#define OPIE_PIM_MAINTAINER_H
-
-#include <qstring.h>
-
-/**
- * Who maintains what?
- */
-class OPimMaintainer {
-public:
- enum Mode { Undefined = -1,
- Nothing = 0,
- Responsible,
- DoneBy,
- Coordinating,
- };
- OPimMaintainer( int mode = Undefined, int uid = 0);
- OPimMaintainer( const OPimMaintainer& );
- ~OPimMaintainer();
-
- OPimMaintainer &operator=( const OPimMaintainer& );
- bool operator==( const OPimMaintainer& );
- bool operator!=( const OPimMaintainer& );
-
-
- int mode()const;
- int uid()const;
-
- void setMode( int mode );
- void setUid( int uid );
-
-private:
- int m_mode;
- int m_uid;
- class Private;
- Private *d;
-
-};
-
-#endif