智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/ce/ce6da5545d143c4db595f10ae06...

22 lines
537 B

#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