summaryrefslogtreecommitdiff
path: root/libopie/pim/opimstate.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/opimstate.h
parent1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff)
downloadopie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/opimstate.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/pim/opimstate.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/libopie/pim/opimstate.h b/libopie/pim/opimstate.h
deleted file mode 100644
index cf6af46..0000000
--- a/libopie/pim/opimstate.h
+++ b/dev/null
@@ -1,46 +0,0 @@
-#ifndef OPIE_PIM_STATE_H
-#define OPIE_PIM_STATE_H
-
-#include <qstring.h>
-
-/**
- * The State of a Task
- * This class encapsules the state of a todo
- * and it's shared too
- */
-/*
- * in c a simple struct would be enough ;)
- * g_new_state();
- * g_do_some_thing( state_t* );
- * ;)
- */
-class OPimState {
-public:
- enum State {
- Started = 0,
- Postponed,
- Finished,
- NotStarted,
- Undefined
- };
- OPimState( int state = Undefined );
- OPimState( const OPimState& );
- ~OPimState();
-
- bool operator==( const OPimState& );
- OPimState &operator=( const OPimState& );
- void setState( int state);
- int state()const;
-private:
- void deref();
- inline void copyInternally();
-
- struct Data;
- Data* data;
-
- class Private;
- Private *d;
-};
-
-
-#endif