aboutsummaryrefslogtreecommitdiff
path: root/src/application-service-appstore.h
diff options
context:
space:
mode:
authorKen VanDine <ken.vandine@canonical.com>2010-07-15 12:12:19 -0400
committerKen VanDine <ken.vandine@canonical.com>2010-07-15 12:12:19 -0400
commit38feb55cf50484549d8d0c08c0c244f4f53cb38d (patch)
tree4bac2345b613e22f0dde850d21c0cf482551f27c /src/application-service-appstore.h
parent22da24cc09fef99a1574a48b614fc3cc57a9597e (diff)
parent8faa8b6fc99b117bd0799aabc90dc3d271a5fe96 (diff)
downloadlibayatana-appindicator-0.2.3-0ubuntu1.tar.gz
libayatana-appindicator-0.2.3-0ubuntu1.tar.bz2
libayatana-appindicator-0.2.3-0ubuntu1.zip
releasing version 0.2.3-0ubuntu10.2.3-0ubuntu1
Diffstat (limited to 'src/application-service-appstore.h')
-rw-r--r--src/application-service-appstore.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/application-service-appstore.h b/src/application-service-appstore.h
index d2e0013..e8ba8c1 100644
--- a/src/application-service-appstore.h
+++ b/src/application-service-appstore.h
@@ -38,6 +38,7 @@ G_BEGIN_DECLS
typedef struct _ApplicationServiceAppstore ApplicationServiceAppstore;
typedef struct _ApplicationServiceAppstoreClass ApplicationServiceAppstoreClass;
+typedef struct _ApplicationServiceAppstorePrivate ApplicationServiceAppstorePrivate;
struct _ApplicationServiceAppstoreClass {
GObjectClass parent_class;
@@ -49,16 +50,21 @@ struct _ApplicationServiceAppstoreClass {
struct _ApplicationServiceAppstore {
GObject parent;
+
+ ApplicationServiceAppstorePrivate * priv;
};
ApplicationServiceAppstore * application_service_appstore_new (AppLruFile * lrufile);
GType application_service_appstore_get_type (void);
void application_service_appstore_application_add (ApplicationServiceAppstore * appstore,
- const gchar * dbus_name,
- const gchar * dbus_object);
+ const gchar * dbus_name,
+ const gchar * dbus_object);
void application_service_appstore_application_remove (ApplicationServiceAppstore * appstore,
- const gchar * dbus_name,
- const gchar * dbus_object);
+ const gchar * dbus_name,
+ const gchar * dbus_object);
+void application_service_appstore_approver_add (ApplicationServiceAppstore * appstore,
+ const gchar * dbus_name,
+ const gchar * dbus_object);
G_END_DECLS