#ifndef SASS_TYPES_ERROR_H #define SASS_TYPES_ERROR_H #include #include "sass_value_wrapper.h" namespace SassTypes { class Error : public SassValueWrapper { public: Error(Sass_Value*); static char const* get_constructor_name() { return "SassError"; } static Sass_Value* construct(const std::vector>, Sass_Value **); static void initPrototype(v8::Local); }; } #endif