diff options
Diffstat (limited to 'src/unit/Unit.vala')
-rw-r--r-- | src/unit/Unit.vala | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/unit/Unit.vala b/src/unit/Unit.vala new file mode 100644 index 0000000..f297974 --- /dev/null +++ b/src/unit/Unit.vala @@ -0,0 +1,14 @@ +/* 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 Unit { + public void init() throws Error { + } + + public void terminate() { + } +} + |