// This is a generated file, modify: generate/templates/templates/struct_header.h #ifndef GITCHERRYPICKOPTIONS_H #define GITCHERRYPICKOPTIONS_H #include #include #include #include #include #include "async_baton.h" #include "callback_wrapper.h" #include "reference_counter.h" #include "nodegit_wrapper.h" extern "C" { #include } #include "../include/merge_options.h" #include "../include/checkout_options.h" using namespace node; using namespace v8; class GitCherrypickOptions; struct GitCherrypickOptionsTraits { typedef GitCherrypickOptions cppClass; typedef git_cherrypick_options cType; static const bool isDuplicable = false; static void duplicate(git_cherrypick_options **dest, git_cherrypick_options *src) { Nan::ThrowError("duplicate called on GitCherrypickOptions which cannot be duplicated"); } static const bool isSingleton = false; static const bool isFreeable = true; static void free(git_cherrypick_options *raw) { unsigned long referenceCount = 0; if (referenceCount == 0) { ::free(raw); // :: to avoid calling this free recursively } } }; class GitCherrypickOptions : public NodeGitWrapper { // grant full access to base class friend class NodeGitWrapper; public: GitCherrypickOptions(git_cherrypick_options* raw, bool selfFreeing, v8::Local owner = v8::Local()); static void InitializeComponent (v8::Local target); private: GitCherrypickOptions(); ~GitCherrypickOptions(); void ConstructFields(); static NAN_GETTER(GetVersion); static NAN_SETTER(SetVersion); static NAN_GETTER(GetMainline); static NAN_SETTER(SetMainline); Nan::Persistent merge_opts; static NAN_GETTER(GetMergeOpts); static NAN_SETTER(SetMergeOpts); Nan::Persistent checkout_opts; static NAN_GETTER(GetCheckoutOpts); static NAN_SETTER(SetCheckoutOpts); }; #endif