author | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-11-16 19:14:18 (UTC) |
commit | ea3945a9bd8f9830f70b1efa133f9df13b19362f (patch) (side-by-side diff) | |
tree | f2ea22cc50e9aa8aa73ee7dea148f41c563c9666 /libopie/pim/odatebookaccess.h | |
parent | 1c6f490e8541626f68422e0a3a7c7281d7f5b7d3 (diff) | |
download | opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.zip opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.gz opie-ea3945a9bd8f9830f70b1efa133f9df13b19362f.tar.bz2 |
libopie1 goes into unsupported
Diffstat (limited to 'libopie/pim/odatebookaccess.h') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie/pim/odatebookaccess.h | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/libopie/pim/odatebookaccess.h b/libopie/pim/odatebookaccess.h deleted file mode 100644 index 62196da..0000000 --- a/libopie/pim/odatebookaccess.h +++ b/dev/null @@ -1,44 +0,0 @@ -#ifndef OPIE_DATE_BOOK_ACCESS_H -#define OPIE_DATE_BOOK_ACCESS_H - -#include "odatebookaccessbackend.h" -#include "opimaccesstemplate.h" - -#include "oevent.h" - -/** - * This is the object orientated datebook database. It'll use OBackendFactory - * to query for a backend. - * All access to the datebook should be done via this class. - * Make sure to load and save the datebook this is not part of - * destructing and creating the object - * - * @author Holger Freyther, Stefan Eilers - */ -class ODateBookAccess : public OPimAccessTemplate<OEvent> { -public: - ODateBookAccess( ODateBookAccessBackend* = 0l, enum Access acc = Random ); - ~ODateBookAccess(); - - /* return all events */ - List rawEvents()const; - - /* return repeating events */ - List rawRepeats()const; - - /* return non repeating events */ - List nonRepeats()const; - - /* return non repeating events (from,to) */ - OEffectiveEvent::ValueList effectiveEvents( const QDate& from, const QDate& to ) const; - OEffectiveEvent::ValueList effectiveEvents( const QDateTime& start ) const; - OEffectiveEvent::ValueList effectiveNonRepeatingEvents( const QDate& from, const QDate& to ) const; - OEffectiveEvent::ValueList effectiveNonRepeatingEvents( const QDateTime& start ) const; - -private: - ODateBookAccessBackend* m_backEnd; - class Private; - Private* d; -}; - -#endif |