blob: 92ac44ee504073a91179b4d1ea24843a96cac8e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "pch.h"
#include "minitmpl.h"
std::map<std::string, std::pair<template_cb, std::pair<bool, void *>>> TemplateString::template_callbacks;
std::string TemplateString::doTemplateStr() {
size_t pos;
in_cache = str();
for (auto& key : template_callbacks) {
pos = 0;
while ((pos = in_cache.find(key.first, pos)) != std::string::npos) {
in_cache.replace(pos, key.first.length(), key.second.first(out_cache, key.second.second.second));
if (!key.second.second.first ) {
pos += out_cache.length();
}
out_cache.clear();
}
}
return in_cache;
}
|