Blame src/values.hpp

Packit Service 7770af
#ifndef SASS_VALUES_H
Packit Service 7770af
#define SASS_VALUES_H
Packit Service 7770af
Packit Service 7770af
#include "ast.hpp"
Packit Service 7770af
Packit Service 7770af
namespace Sass {
Packit Service 7770af
Packit Service 7770af
  union Sass_Value* ast_node_to_sass_value (const Expression_Ptr val);
Packit Service 7770af
  Value_Ptr sass_value_to_ast_node (const union Sass_Value* val);
Packit Service 7770af
Packit Service 7770af
}
Packit Service 7770af
#endif