// This is a generated file, modify: generate/templates/templates/class_header.h #ifndef GITTREEENTRY_H #define GITTREEENTRY_H #include #include #include #include #include #include #include "async_baton.h" #include "nodegit_wrapper.h" #include "promise_completion.h" #include "reference_counter.h" extern "C" { #include } #include "../include/typedefs.h" #include "../include/oid.h" #include "../include/object.h" #include "../include/repository.h" // Forward declaration. struct git_tree_entry { }; using namespace node; using namespace v8; class GitTreeEntry; struct GitTreeEntryTraits { typedef GitTreeEntry cppClass; typedef git_tree_entry cType; static const bool isDuplicable = true; static void duplicate(git_tree_entry **dest, git_tree_entry *src) { git_tree_entry_dup(dest, src); } static const bool isSingleton = false; static const bool isFreeable = true; static void free(git_tree_entry *raw) { unsigned long referenceCount = 0; if (referenceCount == 0) { ::git_tree_entry_free(raw); // :: to avoid calling this free recursively } } }; class GitTreeEntry : public NodeGitWrapper { // grant full access to base class friend class NodeGitWrapper; public: static void InitializeComponent (v8::Local target); private: GitTreeEntry() : NodeGitWrapper( "A new GitTreeEntry cannot be instantiated." ) {} GitTreeEntry(git_tree_entry *raw, bool selfFreeing, v8::Local owner = v8::Local()) : NodeGitWrapper(raw, selfFreeing, owner) {} ~GitTreeEntry(); static NAN_METHOD(Filemode); static NAN_METHOD(FilemodeRaw); static NAN_METHOD(Id); static NAN_METHOD(Name); struct ToObjectBaton { int error_code; const git_error* error; git_object * object_out; git_repository * repo; const git_tree_entry * entry; }; class ToObjectWorker : public Nan::AsyncWorker { public: ToObjectWorker( ToObjectBaton *_baton, Nan::Callback *callback ) : Nan::AsyncWorker(callback) , baton(_baton) {}; ~ToObjectWorker() {}; void Execute(); void HandleOKCallback(); private: ToObjectBaton *baton; }; static NAN_METHOD(ToObject); static NAN_METHOD(Type); }; #endif