aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/util/instance/methods.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/vcomponent/util/instance/methods.scm')
-rw-r--r--module/vcomponent/util/instance/methods.scm13
1 files changed, 11 insertions, 2 deletions
diff --git a/module/vcomponent/util/instance/methods.scm b/module/vcomponent/util/instance/methods.scm
index 926f9bb8..18ac9330 100644
--- a/module/vcomponent/util/instance/methods.scm
+++ b/module/vcomponent/util/instance/methods.scm
@@ -27,12 +27,21 @@
(define-class <events> ()
- (calendar-files init-keyword: calendar-files:)
- (calendars getter: get-calendars)
+ ;; Files which calendars where loaded from
+ (calendar-files init-keyword: calendar-files:
+ init-value: '())
+ ;; calendar objects
+ (calendars getter: get-calendars
+ init-value: '())
+ ;; events, which should all be children of the calendars
(events getter: get-events)
+ ;; subset of events
(repeating-events getter: get-repeating-events)
+ ;; subset of events
(fixed-events getter: get-fixed-events)
+ ;; events again, but as stream with repeating events realised
(event-set getter: get-event-set)
+ ;; hash-table from event UID:s, to the events
uid-map
)