diff options
author | Ted Gould <ted@gould.cx> | 2010-06-30 11:29:46 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-06-30 11:29:46 -0500 |
commit | 9b98c0e29a0f15d9203feb051f4d39155e331dda (patch) | |
tree | f8b393f773365af2ac46d51c114f1785ee27aaff /tests/json-loader.h | |
parent | 9dc2095a918b79246713d205b1716358f5d012ec (diff) | |
parent | 94516efaf61bccb441d4c49bb94e4ae5cd86e9ee (diff) | |
download | libdbusmenu-9b98c0e29a0f15d9203feb051f4d39155e331dda.tar.gz libdbusmenu-9b98c0e29a0f15d9203feb051f4d39155e331dda.tar.bz2 libdbusmenu-9b98c0e29a0f15d9203feb051f4d39155e331dda.zip |
* Upstream Merge
* Adding more through JSON support for testing
* Autogen
* debian/control, debian/libdbusmenu-jsonloader*install: Adding
two binary packages for the jsonloader test library.
Diffstat (limited to 'tests/json-loader.h')
-rw-r--r-- | tests/json-loader.h | 31 |
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__ */ |