#include <iostream>
#include "Logging.h"
#include "CSCommand.h"

#include "vwrapper.h"
#include "StringUtils.h"


class Test1 {};

class Test2 {

public:
    Test1 t;
    Logger logger;
    Test2(Test1* t1) : t(*t1), logger(Log) {

    }
};

Test1 t1 = Test1();
Test2* t2 = new Test2(&t1);

int main()
{
    CSCommand* cs = new CSCommand();
    cs->runTests();
    std::cout << "Hello World!\n";

    processCommand((char*)"PV=2.0");

    // t2->logger.print();
}
