/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ /* * anjuta * Copyright (C) James Liggett 2008 * * anjuta is free software. * * You may 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 of the License, or (at your option) * any later version. * * anjuta 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 anjuta. If not, write to: * The Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor * Boston, MA 02110-1301, USA. */ #ifndef _GIT_BRANCH_CREATE_COMMAND_H_ #define _GIT_BRANCH_CREATE_COMMAND_H_ #include #include "git-command.h" G_BEGIN_DECLS #define GIT_TYPE_BRANCH_CREATE_COMMAND (git_branch_create_command_get_type ()) #define GIT_BRANCH_CREATE_COMMAND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIT_TYPE_BRANCH_CREATE_COMMAND, GitBranchCreateCommand)) #define GIT_BRANCH_CREATE_COMMAND_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIT_TYPE_BRANCH_CREATE_COMMAND, GitBranchCreateCommandClass)) #define GIT_IS_BRANCH_CREATE_COMMAND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIT_TYPE_BRANCH_CREATE_COMMAND)) #define GIT_IS_BRANCH_CREATE_COMMAND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIT_TYPE_BRANCH_CREATE_COMMAND)) #define GIT_BRANCH_CREATE_COMMAND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIT_TYPE_BRANCH_CREATE_COMMAND, GitBranchCreateCommandClass)) typedef struct _GitBranchCreateCommandClass GitBranchCreateCommandClass; typedef struct _GitBranchCreateCommand GitBranchCreateCommand; typedef struct _GitBranchCreateCommandPriv GitBranchCreateCommandPriv; struct _GitBranchCreateCommandClass { GitCommandClass parent_class; }; struct _GitBranchCreateCommand { GitCommand parent_instance; GitBranchCreateCommandPriv *priv; }; GType git_branch_create_command_get_type (void) G_GNUC_CONST; GitBranchCreateCommand *git_branch_create_command_new (const gchar *working_directory, const gchar *name, const gchar *revision, gboolean checkout); gchar *git_branch_create_command_get_branch_name (GitBranchCreateCommand *self); G_END_DECLS #endif /* _GIT_BRANCH_CREATE_COMMAND_H_ */