summaryrefslogtreecommitdiff
path: root/archiver/backend-list.h
diff options
context:
space:
mode:
authorJoe Shaw <joeshaw@src.gnome.org>2005-10-31 18:20:27 +0000
committerJoe Shaw <joeshaw@src.gnome.org>2005-10-31 18:20:27 +0000
commit52f36c58a4239734f37896add81b10db9c13938d (patch)
treecc0b532e30bdf1f0fb6d77b3e783f15f381ce47c /archiver/backend-list.h
parent49601b934df132b30157201c257910e7aba8aef6 (diff)
downloadgnome-control-center-nautilus-search.tar.gz
bring the branch up in sync with 2.12.1, and tag it asNAUTILUS_SEARCH_2_12_1_MERGEPOINTNAUTILUS_SEARCH2_BRANCH_ANCHORnautilus-search
NAUTILUS_SEARCH_2_12_2_MERGEPOINT
Diffstat (limited to 'archiver/backend-list.h')
-rw-r--r--archiver/backend-list.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/archiver/backend-list.h b/archiver/backend-list.h
deleted file mode 100644
index 20aae22f3..000000000
--- a/archiver/backend-list.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/* -*- mode: c; style: linux -*- */
-
-/* backend-list.h
- * Copyright (C) 2000-2001 Ximian, Inc.
- *
- * Written by Bradford Hovinen <hovinen@ximian.com>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2, or (at your option)
- * any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
- */
-
-#ifndef __BACKEND_LIST_H
-#define __BACKEND_LIST_H
-
-#include <gnome.h>
-#include <bonobo.h>
-
-#include "ConfigArchiver.h"
-
-BEGIN_GNOME_DECLS
-
-#define BACKEND_LIST(obj) GTK_CHECK_CAST (obj, backend_list_get_type (), BackendList)
-#define BACKEND_LIST_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, backend_list_get_type (), BackendListClass)
-#define IS_BACKEND_LIST(obj) GTK_CHECK_TYPE (obj, backend_list_get_type ())
-
-typedef struct _BackendList BackendList;
-typedef struct _BackendListClass BackendListClass;
-typedef struct _BackendListPrivate BackendListPrivate;
-
-typedef gint (*BackendCB) (BackendList *, gchar *, gpointer);
-
-struct _BackendList
-{
- BonoboXObject parent;
-
- BackendListPrivate *p;
-};
-
-struct _BackendListClass
-{
- BonoboXObjectClass parent_class;
-
- POA_ConfigArchiver_BackendList__epv epv;
-};
-
-GType backend_list_get_type (void);
-
-BonoboObject *backend_list_new (gboolean is_global);
-
-gboolean backend_list_contains (BackendList *backend_list,
- const gchar *backend_id);
-
-gboolean backend_list_foreach (BackendList *backend_list,
- BackendCB callback,
- gpointer data);
-
-void backend_list_add (BackendList *backend_list,
- const gchar *backend_id);
-void backend_list_remove (BackendList *backend_list,
- const gchar *backend_id);
-
-void backend_list_save (BackendList *backend_list);
-
-END_GNOME_DECLS
-
-#endif /* __BACKEND_LIST_H */