aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent/data-stores/virtual.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-09-05 00:55:35 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-09-05 00:55:35 +0200
commitc64a4bc56f93c08cf55fb907078e588ad737684c (patch)
treef70767074a4550a2be180dd4659e2dedc922b0b4 /module/vcomponent/data-stores/virtual.scm
parentMove lens test. (diff)
downloadcalp-c64a4bc56f93c08cf55fb907078e588ad737684c.tar.gz
calp-c64a4bc56f93c08cf55fb907078e588ad737684c.tar.xz
Major work on, something.
Diffstat (limited to 'module/vcomponent/data-stores/virtual.scm')
-rw-r--r--module/vcomponent/data-stores/virtual.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/module/vcomponent/data-stores/virtual.scm b/module/vcomponent/data-stores/virtual.scm
new file mode 100644
index 00000000..03c115f5
--- /dev/null
+++ b/module/vcomponent/data-stores/virtual.scm
@@ -0,0 +1,22 @@
+(define-module (vcomponent data-stores virtual)
+ :use-module (oop goops)
+ :use-module ((srfi srfi-88) :select ())
+ :use-module (vcomponent data-stores common)
+ :export (make-file-store))
+
+(define-class <virtual-data-store> (<calendar-data-store>)
+ )
+
+(define-method (get-all (this <virtual-data-store>))
+ #f)
+
+(define-method (get-by-uid (this <virtual-data-store>)
+ (uid <string>))
+ #f)
+
+
+(define-method (color (this <virtual-data-store>))
+ "")
+
+(define-method (displayname (this <virtual-data-store>))
+ "Virtual Calendar")