summaryrefslogtreecommitdiff
path: root/src/events/Events.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/events/Events.vala')
-rw-r--r--src/events/Events.vala18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/events/Events.vala b/src/events/Events.vala
new file mode 100644
index 0000000..dc2b662
--- /dev/null
+++ b/src/events/Events.vala
@@ -0,0 +1,18 @@
+/* Copyright 2011-2014 Yorba Foundation
+ *
+ * This software is licensed under the GNU Lesser General Public License
+ * (version 2.1 or later). See the COPYING file in this distribution.
+ */
+
+namespace Events {
+
+public void init() throws Error {
+ Events.Branch.init();
+}
+
+public void terminate() {
+ Events.Branch.terminate();
+}
+
+}
+