Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
42 lines (27 loc) · 766 Bytes

File metadata and controls

42 lines (27 loc) · 766 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
42
#ifndef GITNOTEITERATOR_H
#define GITNOTEITERATOR_H
// generated from class_header.h
#include <nan.h>
#include <string>
#include <queue>
extern "C" {
#include <git2.h>
}
using namespace node;
using namespace v8;
class GitNoteIterator : public Nan::ObjectWrap {
public:
static Nan::Persistent<Function> constructor_template;
static void InitializeComponent (Local<v8::Object> target);
git_note_iterator *GetValue();
git_note_iterator **GetRefValue();
void ClearValue();
static Local<v8::Value> New(void *raw, bool selfFreeing);
bool selfFreeing;
private:
GitNoteIterator(git_note_iterator *raw, bool selfFreeing);
~GitNoteIterator();
static NAN_METHOD(JSNewFunction);
git_note_iterator *raw;
};
#endif
Morty Proxy This is a proxified and sanitized view of the page, visit original site.