Skip to content
Snippets Groups Projects
match.cpp 262 B
Newer Older
#include <libwccl/values/match.h>
#include <sstream>

namespace Wccl {

const char* Match::type_name = "Match";

std::string Match::var_repr(const std::string &var_name)
{
	std::stringstream ss;
	ss << "$m:" << var_name;
	return ss.str();
}

} /* end ns Wccl */