glade: Fix make file some files were not installed
[anjuta.git] / plugins / subversion / svn-remove-command.h
blob699755cd0f69ffc4f924e3761ac31b89bae0ab02
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * anjuta
4 * Copyright (C) James Liggett 2007 <jrliggett@cox.net>
6 * Portions based on the original Subversion plugin
7 * Copyright (C) Johannes Schmid 2005
8 *
9 * anjuta is free software.
11 * You may redistribute it and/or modify it under the terms of the
12 * GNU General Public License, as published by the Free Software
13 * Foundation; either version 2 of the License, or (at your option)
14 * any later version.
16 * anjuta is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with anjuta. If not, write to:
23 * The Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor
25 * Boston, MA 02110-1301, USA.
28 #ifndef _SVN_REMOVE_COMMAND_H_
29 #define _SVN_REMOVE_COMMAND_H_
31 #include <glib-object.h>
32 #include "svn-command.h"
34 G_BEGIN_DECLS
36 #define SVN_TYPE_REMOVE_COMMAND (svn_remove_command_get_type ())
37 #define SVN_REMOVE_COMMAND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SVN_TYPE_REMOVE_COMMAND, SvnRemoveCommand))
38 #define SVN_REMOVE_COMMAND_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SVN_TYPE_REMOVE_COMMAND, SvnRemoveCommandClass))
39 #define SVN_IS_REMOVE_COMMAND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SVN_TYPE_REMOVE_COMMAND))
40 #define SVN_IS_REMOVE_COMMAND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SVN_TYPE_REMOVE_COMMAND))
41 #define SVN_REMOVE_COMMAND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SVN_TYPE_REMOVE_COMMAND, SvnRemoveCommandClass))
43 typedef struct _SvnRemoveCommandClass SvnRemoveCommandClass;
44 typedef struct _SvnRemoveCommand SvnRemoveCommand;
45 typedef struct _SvnRemoveCommandPriv SvnRemoveCommandPriv;
47 struct _SvnRemoveCommandClass
49 SvnCommandClass parent_class;
52 struct _SvnRemoveCommand
54 SvnCommand parent_instance;
56 SvnRemoveCommandPriv *priv;
59 GType svn_remove_command_get_type (void) G_GNUC_CONST;
60 SvnRemoveCommand *svn_remove_command_new_path (const gchar *path,
61 const gchar *log_message,
62 gboolean force);
63 SvnRemoveCommand *svn_remove_command_new_list (GList *paths,
64 const gchar *log_message,
65 gboolean force);
66 void svn_remove_command_destroy (SvnRemoveCommand *self);
68 G_END_DECLS
70 #endif /* _SVN_REMOVE_COMMAND_H_ */