summaryrefslogtreecommitdiff
path: root/core/pim/datebook2/bookmanager.h
Unidiff
Diffstat (limited to 'core/pim/datebook2/bookmanager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/datebook2/bookmanager.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/core/pim/datebook2/bookmanager.h b/core/pim/datebook2/bookmanager.h
new file mode 100644
index 0000000..44ad8ed
--- a/dev/null
+++ b/core/pim/datebook2/bookmanager.h
@@ -0,0 +1,40 @@
1#ifndef OPIE_DATE_BOOK_MANAGER_H
2#define OPIE_DATE_BOOK_MANAGER_H
3
4#include <qlist.h>
5
6#include <opie/opimrecord.h>
7#include <opie/odatebookaccess.h>
8
9namespace Datebook {
10 /**
11 * book manager is responsible for managing the
12 * access
13 * All access to the underlying API will be done
14 * through this class
15 */
16 class BookManager {
17 public:
18 BookManager();
19 ~BookManager();
20
21 bool isLoaded()const;
22 bool load();
23 bool save();
24
25 OEvent event( int uid );
26 OEffectiveEvent::ValueList list( const QDate& from,
27 const QDate& to );
28 ODateBookAccess::List allRecords()const;
29
30 void add( const OEvent& );
31 void update( const OEvent& );
32 void remove( int uid );
33 void remove( const QArray<int>& );
34
35 QPtrList<OPimRecord> records( const QDate& from,
36 const QDate& to );
37 };
38}
39
40#endif