mstch/include/mstch.h
Daniel Sipka e31207b9cf reformat
2015-04-10 12:56:08 +02:00

14 lines
317 B
C++

#ifndef _MSTCH_H_
#define _MSTCH_H_
#include "types.h"
namespace mstch {
std::string render(
const std::string& tmplt,
const object& context,
const std::map<std::string,std::string>& partials =
std::map<std::string,std::string>());
}
#endif // _MSTCH_H_