#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uCalc::Transformer t; t.FromTo("{@Bracket}", "("); t.FromTo("{@CloseBracket}", ")"); cout << t.Transform("{a, b, c} f(x, y) [1, 2, 3];") << endl; }