// This is a generated file, modify: generate/templates/templates/class_header.h

#ifndef GITMESSAGETRAILERARRAY_H
#define GITMESSAGETRAILERARRAY_H
#include <nan.h>
#include <string>
#include <queue>
#include <utility>

#include "async_baton.h"
#include "nodegit_wrapper.h"
#include "promise_completion.h"

extern "C" {
#include <git2.h>
}

#include "../include/typedefs.h"

#include "../include/message_trailer.h"

using namespace node;
using namespace v8;

class GitMessageTrailerArray;

struct GitMessageTrailerArrayTraits {
  typedef GitMessageTrailerArray cppClass;
  typedef git_message_trailer_array cType;

  static const bool isDuplicable = false;
  static void duplicate(git_message_trailer_array **dest, git_message_trailer_array *src) {
     Nan::ThrowError("duplicate called on GitMessageTrailerArray which cannot be duplicated");
   }

  static const bool isFreeable = true;
  static void free(git_message_trailer_array *raw) {
    ::free(raw); // :: to avoid calling this free recursively
   }
};

class GitMessageTrailerArray : public
  NodeGitWrapper<GitMessageTrailerArrayTraits>
{
    // grant full access to base class
    friend class NodeGitWrapper<GitMessageTrailerArrayTraits>;
   public:
    static void InitializeComponent (v8::Local<v8::Object> target);

 

  private:
    GitMessageTrailerArray()
      : NodeGitWrapper<GitMessageTrailerArrayTraits>(
           "A new GitMessageTrailerArray cannot be instantiated."
       )
    {}
    GitMessageTrailerArray(git_message_trailer_array *raw, bool selfFreeing, v8::Local<v8::Object> owner = v8::Local<v8::Object>())
      : NodeGitWrapper<GitMessageTrailerArrayTraits>(raw, selfFreeing, owner)
    {}
    ~GitMessageTrailerArray();
     static NAN_METHOD(Trailers);
    static NAN_METHOD(Count);
    static NAN_METHOD(TrailerBlock);
};

#endif
