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.
|
#ifndef SASS_BIND_H
|
|
#define SASS_BIND_H
|
|
|
|
#include <string>
|
|
#include "environment.hpp"
|
|
#include "ast_fwd_decl.hpp"
|
|
|
|
namespace Sass {
|
|
|
|
void bind(std::string type, std::string name, Parameters_Obj, Arguments_Obj, Context*, Env*, Eval*);
|
|
}
|
|
|
|
#endif
|
|
|