#include #include #include "Global.h" #include "__jet.h" int main(int argc, char **argv) { coreutils::ZString data("\n" " \n" " this is the value\n" " another container value\n" " \n" " \n" " 789\n" " \n" " 123\n" " \n" " \n" " \n" "\n"); // coreutils::ZString data("ABCHIJXYZ\n"); std::cout << "---------\n" << data << "----------\n" << std::endl; jet::Global global; coreutils::MString out; jet::__jet *jet = new jet::__jet(data, out, global); delete jet; std::cout << ">>-------" << std::endl << out << std::endl << "<<------" << std::endl; global.dump(); }