mstch/include/mstch.h

15 lines
317 B
C
Raw Normal View History

2015-04-09 20:41:27 +02:00
#ifndef _MSTCH_H_
#define _MSTCH_H_
#include "types.h"
namespace mstch {
std::string render(
const std::string& tmplt,
const object& context,
2015-04-10 12:56:08 +02:00
const std::map<std::string,std::string>& partials =
std::map<std::string,std::string>());
2015-04-09 20:41:27 +02:00
}
#endif // _MSTCH_H_