summaryrefslogtreecommitdiff
path: root/libopie/pim/otodoaccessvcal.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/otodoaccessvcal.h
parent1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff)
downloadopie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz
opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/otodoaccessvcal.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie/pim/otodoaccessvcal.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/libopie/pim/otodoaccessvcal.h b/libopie/pim/otodoaccessvcal.h
deleted file mode 100644
index 2b17147..0000000
--- a/libopie/pim/otodoaccessvcal.h
+++ b/dev/null
@@ -1,40 +0,0 @@
-#ifndef OPIE_OTODO_ACCESS_VCAL_H
-#define OPIE_OTODO_ACCESS_VCAL_H
-
-#include "otodoaccessbackend.h"
-
-class OTodoAccessVCal : public OTodoAccessBackend {
-public:
- OTodoAccessVCal(const QString& );
- ~OTodoAccessVCal();
-
- bool load();
- bool reload();
- bool save();
-
- QArray<int> allRecords()const;
- QArray<int> matchRegexp(const QRegExp &r) const;
- QArray<int> queryByExample( const OTodo& t, int sort, const QDateTime& d = QDateTime() );
- QArray<int> effectiveToDos( const QDate& start,
- const QDate& end,
- bool includeNoDates );
- QArray<int> overDue();
- QArray<int> sorted( bool asc, int sortOrder, int sortFilter,
- int cat );
- OTodo find(int uid)const;
- void clear();
- bool add( const OTodo& );
- bool remove( int uid );
- bool replace( const OTodo& );
-
- void removeAllCompleted();
- virtual QBitArray supports()const;
-
-private:
- static QBitArray sup();
- bool m_dirty : 1;
- QString m_file;
- QMap<int, OTodo> m_map;
-};
-
-#endif