aboutsummaryrefslogtreecommitdiff
path: root/tests/json-loader.h
diff options
context:
space:
mode:
authorSebastien Bacher <seb128@ubuntu.com>2010-07-01 16:53:43 +0200
committerSebastien Bacher <seb128@ubuntu.com>2010-07-01 16:53:43 +0200
commit1231c20212abb9c09b9eaec0c8619d126e3e2779 (patch)
tree0c8d6f46cde621834e273384dda9a923d3481011 /tests/json-loader.h
parent01780416e8c1267838892fb6d114a84fe33dc590 (diff)
parentf68faeacaf96ff5fd21310e5a096857ec675c8b0 (diff)
downloadlibdbusmenu-1231c20212abb9c09b9eaec0c8619d126e3e2779.tar.gz
libdbusmenu-1231c20212abb9c09b9eaec0c8619d126e3e2779.tar.bz2
libdbusmenu-1231c20212abb9c09b9eaec0c8619d126e3e2779.zip
releasing version 0.3.4-0ubuntu1
Diffstat (limited to 'tests/json-loader.h')
-rw-r--r--tests/json-loader.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/json-loader.h b/tests/json-loader.h
new file mode 100644
index 0000000..666bb6e
--- /dev/null
+++ b/tests/json-loader.h
@@ -0,0 +1,31 @@
+/*
+A loader to turn JSON into dbusmenu menuitems
+
+Copyright 2010 Canonical Ltd.
+
+Authors:
+ Ted Gould <ted@canonical.com>
+
+This program is free software: you can redistribute it and/or modify it
+under the terms of the GNU General Public License version 3, as published
+by the Free Software Foundation.
+
+This program is distributed in the hope that it will be useful, but
+WITHOUT ANY WARRANTY; without even the implied warranties of
+MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
+PURPOSE. See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along
+with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef __DBUSMENU_JSON_LOADER_H__
+#define __DBUSMENU_JSON_LOADER_H__
+
+#include <libdbusmenu-glib/menuitem.h>
+#include <json-glib/json-glib.h>
+
+DbusmenuMenuitem * dbusmenu_json_build_from_node (const JsonNode * node);
+DbusmenuMenuitem * dbusmenu_json_build_from_file (const gchar * filename);
+
+#endif /* __DBUSMENU_JSON_LOADER_H__ */