#ifndef __GDAL_WARPER_H__
#define __GDAL_WARPER_H__

// node
#include <node.h>
#include <node_object_wrap.h>

// nan
#include "nan-wrapper.h"

// gdal
#include <gdal_alg.h>
#include <gdal_priv.h>

// ogr
#include <ogrsf_frmts.h>

using namespace v8;
using namespace node;

// Methods and classes from gdalwarper.h
// http://www.gdal.org/gdalwarper_8h.html

namespace node_gdal {
namespace Warper {

void Initialize(Local<Object> target);

NAN_METHOD(reprojectImage);
NAN_METHOD(suggestedWarpOutput);

} // namespace Warper
} // namespace node_gdal

#endif