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.
25 lines
609 B
25 lines
609 B
#ifndef SASS_TYPES_NUMBER_H
|
|
#define SASS_TYPES_NUMBER_H
|
|
|
|
#include <nan.h>
|
|
#include "sass_value_wrapper.h"
|
|
|
|
namespace SassTypes
|
|
{
|
|
|
|
class Number : public SassValueWrapper<Number> {
|
|
public:
|
|
Number(Sass_Value*);
|
|
static char const* get_constructor_name() { return "SassNumber"; }
|
|
static Sass_Value* construct(const std::vector<v8::Local<v8::Value>>, Sass_Value **out);
|
|
|
|
static void initPrototype(v8::Local<v8::FunctionTemplate>);
|
|
|
|
static NAN_METHOD(GetValue);
|
|
static NAN_METHOD(GetUnit);
|
|
static NAN_METHOD(SetValue);
|
|
static NAN_METHOD(SetUnit);
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|