#include <iostream>
#include "uCalc.h"

using namespace std;
using namespace uCalcSoftware;

int main() {
   uCalc uc;
   {
      uCalc::String s("Data (important) more data");
      s.Owned(); // Causes s to be released when it goes out of scope

      // Get the text between the opening and closing parenthesis
      auto content = s.Between("(", ")");

      cout << content << endl;
   }
}