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

15 lines
248 B
C++
Raw Normal View History

2016-04-22 21:46:31 +02:00
#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