10 lines
199 B
C++
10 lines
199 B
C++
#ifndef TPLR_H
|
|
#define TPLR_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
std::string renderTemplate(const std::string& templateContent, const std::map<std::string, std::string>& context);
|
|
|
|
#endif // TPLR_H
|
|
|