aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer/evolution-importer-client.h
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2001-01-18 02:28:39 +0800
committerIain Holmes <iain@src.gnome.org>2001-01-18 02:28:39 +0800
commit59bd12b76388b33ccde74bc151fabda14a763924 (patch)
tree7eacadebe9ff5ca37ea51e144378604b55926407 /shell/importer/evolution-importer-client.h
parentb77c7192f536108e07ffaf19a58e6bff9b011a93 (diff)
downloadgsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar.gz
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar.bz2
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar.lz
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar.xz
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.tar.zst
gsoc2013-evolution-59bd12b76388b33ccde74bc151fabda14a763924.zip
Removed the factory and updated the interfaces and objects
svn path=/trunk/; revision=7590
Diffstat (limited to 'shell/importer/evolution-importer-client.h')
-rw-r--r--shell/importer/evolution-importer-client.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/shell/importer/evolution-importer-client.h b/shell/importer/evolution-importer-client.h
index 3e81d8a9ba..e122a7cfdd 100644
--- a/shell/importer/evolution-importer-client.h
+++ b/shell/importer/evolution-importer-client.h
@@ -25,8 +25,7 @@
#define EVOLUTION_IMPORTER_CLIENT_H
#include <bonobo/bonobo-object-client.h>
-
-#include "evolution-importer.h"
+#include <importer/evolution-importer.h>
#ifdef __cplusplus
extern "C" {
@@ -60,10 +59,14 @@ typedef void (* EvolutionImporterClientCallback) (EvolutionImporterClient *clien
void *data);
GtkType evolution_importer_client_get_type (void);
-void evolution_importer_client_construct (EvolutionImporterClient *client,
- CORBA_Object corba_object);
+
EvolutionImporterClient *evolution_importer_client_new (const CORBA_Object objref);
+EvolutionImporterClient *evolution_importer_client_new_from_id (const char *id);
+gboolean evolution_importer_client_support_format (EvolutionImporterClient *client,
+ const char *filename);
+gboolean evolution_importer_client_load_file (EvolutionImporterClient *client,
+ const char *filename);
void evolution_importer_client_process_item (EvolutionImporterClient *client,
EvolutionImporterClientCallback callback,
void *closure);