-
Notifications
You must be signed in to change notification settings - Fork 699
Expand file tree
/
Copy pathdiff_range.h
More file actions
41 lines (28 loc) · 887 Bytes
/
diff_range.h
File metadata and controls
41 lines (28 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* This code is auto-generated; unless you know what you're doing, do not modify!
**/
#ifndef GITDIFFRANGE_H
#define GITDIFFRANGE_H
#include <v8.h>
#include <node.h>
#include <string>
#include "git2.h"
using namespace node;
using namespace v8;
class GitDiffRange : public ObjectWrap {
public:
static Persistent<Function> constructor_template;
static void Initialize (Handle<v8::Object> target);
git_diff_range *GetValue();
static Handle<Value> New(void *raw);
private:
GitDiffRange(git_diff_range *raw);
~GitDiffRange();
static Handle<Value> New(const Arguments& args);
static Handle<Value> OldStart(const Arguments& args);
static Handle<Value> OldLines(const Arguments& args);
static Handle<Value> NewStart(const Arguments& args);
static Handle<Value> NewLines(const Arguments& args);
git_diff_range *raw;
};
#endif