packages feed

hlibsass-0.1.6.0: libsass/src/bind.hpp

#ifndef SASS_BIND_H
#define SASS_BIND_H

#include <string>
#include "environment.hpp"
#include "ast_fwd_decl.hpp"

namespace Sass {
  typedef Environment<AST_Node_Obj> Env;

  void bind(std::string type, std::string name, Parameters_Obj, Arguments_Obj, Context*, Env*, Eval*);
}

#endif