#include #include #include "../include/output.h" #include "../include/debugger.h" using namespace std; int main(int argc, char **argv) { Debugger *application; try { application = new Debugger(argc, argv); application->Run(); } catch (DebuggerArgumentError e) { if (e.GetMessage().length() > 0) ERROR(e.GetMessage()); cout << e.GetDescription() << endl; return EXIT_FAILURE; } catch (DebuggerError e) { if (e.GetMessage().length() > 0) ERROR(e.GetMessage()); return EXIT_FAILURE; } return EXIT_SUCCESS; } // kate: indent-mode cstyle; space-indent on; indent-width 4;