diff options
Diffstat (limited to 'libkcal/calendar.h')
-rw-r--r-- | libkcal/calendar.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libkcal/calendar.h b/libkcal/calendar.h index 4c6c0f988..a53ef5a06 100644 --- a/libkcal/calendar.h +++ b/libkcal/calendar.h @@ -285,6 +285,21 @@ class LIBKCAL_EXPORT Calendar : public TQObject, public CustomProperties, virtual void close() = 0; /** + Clears out the current Calendar, freeing all used memory etc. + */ + virtual void closeEvents() = 0; + + /** + Clears out the current Calendar, freeing all used memory etc. + */ + virtual void closeTodos() = 0; + + /** + Clears out the current Calendar, freeing all used memory etc. + */ + virtual void closeJournals() = 0; + + /** Sync changes in memory to persistant storage. */ virtual void save() = 0; |