#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; auto t = uc.NewTransformer(); t.FromTo("abc", "changed to xyz"); t.FromTo("Quote1({arg})", "'{arg}'"); t.FromTo("Quote2({arg%})", "'{arg}'"); cout << t.Transform("Quote1(abc), Quote2(abc)") << endl; }