#include #include #include "pattern.h" #include "application.h" int main(int argc, char **argv) { try { Application* app = new Application(); app->patt = new KakePattern(); app->run(); } catch(std::runtime_error e) { std::cerr << "Exception caught: " << e.what() << std::endl; } return 0; }