Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNico von Geyso <Nico.Geyso@FU-Berlin.de>2013-03-06 19:43:21 +0400
committerNico von Geyso <Nico.Geyso@FU-Berlin.de>2013-03-06 20:01:33 +0400
commit6edb427b7615207142e10a228164d6a019045126 (patch)
treedf37c3e13d447f8fd5ee33198cbe7921439c4f2d /src/notes.h
parentd1bcc1a8744343253df569ae4798302c1ff796e7 (diff)
basic note iterator implementation
* git_note_iterator_new() - create a new note iterator * git_note_next() - retrieves the next item of the iterator
Diffstat (limited to 'src/notes.h')
-rw-r--r--src/notes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/notes.h b/src/notes.h
index 2f119e3c3..70d5e13fc 100644
--- a/src/notes.h
+++ b/src/notes.h
@@ -10,6 +10,9 @@
#include "common.h"
#include "git2/oid.h"
+#include "git2/types.h"
+
+#include "iterator.h"
#define GIT_NOTES_DEFAULT_REF "refs/notes/commits"