// This is a generated file, modify: generate/templates/templates/class_content.cc

#include <nan.h>
#include <string.h>

extern "C" {
  #include <git2.h>
 }

#include "../include/nodegit.h"
#include "../include/lock_master.h"
#include "../include/functions/copy.h"
#include "../include/diff_hunk.h"
#include "nodegit_wrapper.cc"

 
#include <iostream>

using namespace std;
using namespace v8;
using namespace node;

  GitDiffHunk::~GitDiffHunk() {
    // this will cause an error if you have a non-self-freeing object that also needs
    // to save values. Since the object that will eventually free the object has no
    // way of knowing to free these values.
   }

  void GitDiffHunk::InitializeComponent(v8::Local<v8::Object> target, nodegit::Context *nodegitContext) {
    Nan::HandleScope scope;

    v8::Local<v8::External> nodegitExternal = Nan::New<v8::External>(nodegitContext);
    v8::Local<FunctionTemplate> tpl = Nan::New<FunctionTemplate>(JSNewFunction, nodegitExternal);

    tpl->InstanceTemplate()->SetInternalFieldCount(1);
    tpl->SetClassName(Nan::New("DiffHunk").ToLocalChecked());

         Nan::SetPrototypeMethod(tpl, "oldStart", OldStart, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "oldLines", OldLines, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "newStart", NewStart, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "newLines", NewLines, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "headerLen", HeaderLen, nodegitExternal);
         Nan::SetPrototypeMethod(tpl, "header", Header, nodegitExternal);
  
    InitializeTemplate(tpl);

    v8::Local<Function> constructor_template = Nan::GetFunction(tpl).ToLocalChecked();
    nodegitContext->SaveToPersistent("GitDiffHunk::Template", constructor_template);
    Nan::Set(target, Nan::New("DiffHunk").ToLocalChecked(), constructor_template);
  }

      // start field block
    NAN_METHOD(GitDiffHunk::OldStart) {
      v8::Local<v8::Value> v8ConversionSlot;

            int
           old_start =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->old_start;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( old_start);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffHunk::OldLines) {
      v8::Local<v8::Value> v8ConversionSlot;

            int
           old_lines =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->old_lines;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( old_lines);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffHunk::NewStart) {
      v8::Local<v8::Value> v8ConversionSlot;

            int
           new_start =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->new_start;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( new_start);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffHunk::NewLines) {
      v8::Local<v8::Value> v8ConversionSlot;

            int
           new_lines =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->new_lines;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( new_lines);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffHunk::HeaderLen) {
      v8::Local<v8::Value> v8ConversionSlot;

            size_t
           header_len =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->header_len;
 // start convert_to_v8 block
     v8ConversionSlot = Nan::New<Number>( header_len);
  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
     // start field block
    NAN_METHOD(GitDiffHunk::Header) {
      v8::Local<v8::Value> v8ConversionSlot;

            char *
           header =
          Nan::ObjectWrap::Unwrap<GitDiffHunk>(info.This())->GetValue()->header;
 // start convert_to_v8 block
  if (header){
       v8ConversionSlot = Nan::New<v8::String>(header).ToLocalChecked();
   }
  else {
    v8ConversionSlot = Nan::Null();
  }

  // end convert_to_v8 block
      info.GetReturnValue().Set(v8ConversionSlot);
    }
    // end field block
  // force base class template instantiation, to make sure we get all the
// methods, statics, etc.
template class NodeGitWrapper<GitDiffHunkTraits>;
 