Initial commit - full huishou project

This commit is contained in:
jiapengyu
2026-07-27 14:07:26 +08:00
commit 60790ad1b3
39127 changed files with 5989265 additions and 0 deletions
+80
View File
@@ -0,0 +1,80 @@
// This is a generated file, modify: generate/templates/templates/struct_header.h
#ifndef GITREVERTOPTIONS_H
#define GITREVERTOPTIONS_H
#include <nan.h>
#include <string>
#include <queue>
#include <utility>
#include <unordered_map>
#include "async_baton.h"
#include "callback_wrapper.h"
#include "reference_counter.h"
#include "nodegit_wrapper.h"
extern "C" {
#include <git2.h>
}
#include "../include/merge_options.h"
#include "../include/checkout_options.h"
using namespace node;
using namespace v8;
class GitRevertOptions;
struct GitRevertOptionsTraits {
typedef GitRevertOptions cppClass;
typedef git_revert_options cType;
static const bool isDuplicable = false;
static void duplicate(git_revert_options **dest, git_revert_options *src) {
Nan::ThrowError("duplicate called on GitRevertOptions which cannot be duplicated");
}
static const bool isSingleton = false;
static const bool isFreeable = true;
static void free(git_revert_options *raw) {
unsigned long referenceCount = 0;
if (referenceCount == 0) {
::free(raw); // :: to avoid calling this free recursively
}
}
};
class GitRevertOptions : public NodeGitWrapper<GitRevertOptionsTraits> {
// grant full access to base class
friend class NodeGitWrapper<GitRevertOptionsTraits>;
public:
GitRevertOptions(git_revert_options* raw, bool selfFreeing, v8::Local<v8::Object> owner = v8::Local<v8::Object>());
static void InitializeComponent (v8::Local<v8::Object> target);
private:
GitRevertOptions();
~GitRevertOptions();
void ConstructFields();
static NAN_GETTER(GetVersion);
static NAN_SETTER(SetVersion);
static NAN_GETTER(GetMainline);
static NAN_SETTER(SetMainline);
Nan::Persistent<Object> merge_opts;
static NAN_GETTER(GetMergeOpts);
static NAN_SETTER(SetMergeOpts);
Nan::Persistent<Object> checkout_opts;
static NAN_GETTER(GetCheckoutOpts);
static NAN_SETTER(SetCheckoutOpts);
};
#endif