a
doum
昨天 307960b07d8cb122d9de0c8267b8cb7a63cfc605
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef SASS_TYPES_STRING_H
#define SASS_TYPES_STRING_H
 
#include <nan.h>
#include "sass_value_wrapper.h"
 
namespace SassTypes
{
  class String : public SassValueWrapper<String> {
    public:
      String(Sass_Value*);
      static char const* get_constructor_name() { return "SassString"; }
      static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **);
 
      static void initPrototype(v8::Local<v8::FunctionTemplate>);
 
      static NAN_METHOD(GetValue);
      static NAN_METHOD(SetValue);
  };
}
 
#endif