Blang/tools/mustache/include/mustache/mustache.hpp

15 lines
248 B
C++

#ifndef MUSTACHE_H
#define MUSTACHE_H
#include <string>
#include <map>
namespace Mustache
{
std::string render(const std::string& tmplt,const std::map<std::string,std::string>& context =
std::map<std::string,std::string>());
}
#endif