#include #include "uCalc.h" using namespace std; using namespace uCalcSoftware; int main() { uCalc uc; uCalc::Transformer t; t.uCalc().Description("My Parent uCalc"); auto tokens = t.Tokens(); // Get the parent from the Tokens object auto parent_uc = tokens.uCalc(); // Verify we got the correct parent cout << parent_uc.Description() << endl; }