Add the MaybeBool type.
authorTravis Reitter <travis.reitter@collabora.co.uk>
Thu, 7 Oct 2010 19:51:22 +0000 (12:51 -0700)
committerTravis Reitter <travis.reitter@collabora.co.uk>
Wed, 13 Oct 2010 18:03:54 +0000 (11:03 -0700)
folks/Makefile.am
folks/types.vala [new file with mode: 0644]

index bccb3a3..1d9bf73 100644 (file)
@@ -24,6 +24,7 @@ folks_valasources = \
        persona.vala \
        persona-store.vala \
        presence.vala \
+       types.vala \
        debug.vala \
        $(NULL)
 
diff --git a/folks/types.vala b/folks/types.vala
new file mode 100644 (file)
index 0000000..ba93480
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * Copyright (C) 2010 Collabora Ltd.
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors:
+ *       Travis Reitter <travis.reitter@collabora.co.uk>
+ */
+
+using GLib;
+
+namespace Folks
+{
+  /**
+   * A 'boolean' type that has a distinct 'unset' state.
+   */
+  public static enum MaybeBool
+    {
+      /* This value is explicitly unset. */
+      UNSET = 0,
+      /* False (this value was set from its default of UNSET). */
+      FALSE = 1,
+      /* True (this value was set from its default of UNSET). */
+      TRUE = 2,
+    }
+}