diff options
Diffstat (limited to 'tests/lib/simple-account-manager.h')
-rw-r--r-- | tests/lib/simple-account-manager.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/tests/lib/simple-account-manager.h b/tests/lib/simple-account-manager.h index b4f787c..94a60cd 100644 --- a/tests/lib/simple-account-manager.h +++ b/tests/lib/simple-account-manager.h @@ -1,7 +1,7 @@ /* * simple-account-manager.h - header for a simple account manager service. * - * Copyright (C) 2007-2009 Collabora Ltd. <http://www.collabora.co.uk/> + * Copyright (C) 2007-2012 Collabora Ltd. <http://www.collabora.co.uk/> * Copyright (C) 2007-2008 Nokia Corporation * * Copying and distribution of this file, with or without modification, @@ -13,7 +13,7 @@ #define __TP_TESTS_SIMPLE_ACCOUNT_MANAGER_H__ #include <glib-object.h> -#include <telepathy-glib/dbus-properties-mixin.h> +#include <telepathy-glib/telepathy-glib.h> G_BEGIN_DECLS @@ -30,6 +30,12 @@ struct _TpTestsSimpleAccountManagerClass { struct _TpTestsSimpleAccountManager { GObject parent; + gchar *create_cm; + gchar *create_protocol; + gchar *create_display_name; + GHashTable *create_parameters; + GHashTable *create_properties; + TpTestsSimpleAccountManagerPrivate *priv; }; @@ -52,6 +58,14 @@ GType tp_tests_simple_account_manager_get_type (void); (G_TYPE_INSTANCE_GET_CLASS ((obj), TP_TESTS_TYPE_SIMPLE_ACCOUNT_MANAGER, \ TpTestsSimpleAccountManagerClass)) +void tp_tests_simple_account_manager_add_account ( + TpTestsSimpleAccountManager *self, + const gchar *object_path, + gboolean valid); + +void tp_tests_simple_account_manager_remove_account ( + TpTestsSimpleAccountManager *self, + const gchar *object_path); G_END_DECLS |