~ubuntu-branches/ubuntu/trusty/anjuta/trusty

« back to all changes in this revision

Viewing changes to plugins/git/git-diff-command.h

  • Committer: Package Import Robot
  • Author(s): Steve Ovens
  • Date: 2014-01-03 21:06:06 UTC
  • mfrom: (1.1.55)
  • Revision ID: package-import@ubuntu.com-20140103210606-pmvzhu0s68qy6261
Tags: 2:3.10.2-0ubuntu1
* New upstream release (LP: #1266037)
- Updated Build-Depends of libgtk-3-dev (>= 3.6.0),
  libglib2.0-dev (>= 2.34.0)

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
typedef struct _GitDiffCommandClass GitDiffCommandClass;
41
41
typedef struct _GitDiffCommand GitDiffCommand;
 
42
typedef struct _GitDiffCommandPriv GitDiffCommandPriv;
42
43
 
43
44
struct _GitDiffCommandClass
44
45
{
48
49
struct _GitDiffCommand
49
50
{
50
51
        GitRawOutputCommand parent_instance;
 
52
 
 
53
        GitDiffCommandPriv *priv;
51
54
};
52
55
 
 
56
typedef enum
 
57
{
 
58
        GIT_DIFF_WORKING_TREE,
 
59
        GIT_DIFF_INDEX
 
60
} GitDiffType;
 
61
 
53
62
GType git_diff_command_get_type (void) G_GNUC_CONST;
54
 
GitDiffCommand *git_diff_command_new (const gchar *working_directory);
 
63
GitDiffCommand *git_diff_command_new (const gchar *working_directory, 
 
64
                                      const gchar *path, GitDiffType type);
55
65
 
56
66
G_END_DECLS
57
67