Initial commit
[yaffs-website] / node_modules / node-sass / src / sass_types / string.h
1 #ifndef SASS_TYPES_STRING_H
2 #define SASS_TYPES_STRING_H
3
4 #include <nan.h>
5 #include "sass_value_wrapper.h"
6
7 namespace SassTypes
8 {
9   class String : public SassValueWrapper<String> {
10     public:
11       String(Sass_Value*);
12       static char const* get_constructor_name() { return "SassString"; }
13       static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
14
15       static void initPrototype(v8::Local<v8::FunctionTemplate>);
16
17       static NAN_METHOD(GetValue);
18       static NAN_METHOD(SetValue);
19   };
20 }
21
22 #endif