summaryrefslogtreecommitdiff
path: root/platform/node/src/node_request.hpp
blob: 8e57cb30ec990c43c38c0b900ee6582f607a3b03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#pragma once

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wshadow"
#include <nan.h>
#pragma GCC diagnostic pop

#include <mbgl/storage/resource.hpp>
#include <mbgl/storage/file_source.hpp>

namespace node_mbgl {

class NodeFileSource;

class NodeRequest : public Nan::ObjectWrap {
public:
    static NAN_MODULE_INIT(Init);

    static NAN_METHOD(New);
    static NAN_METHOD(Respond);

    static v8::Handle<v8::Object> Create(const mbgl::Resource&, mbgl::FileSource::Callback);
    static Nan::Persistent<v8::Function> constructor;

    NodeRequest(mbgl::FileSource::Callback);

private:
    mbgl::FileSource::Callback callback;
};

}