Implemented messaging system.
[aesalon.git] / src / monitor / Aesalon.cpp
blob0f72055d9d5adc8fc207a58b4541689ca600a446
1 /** Aesalon, a tool to visualize program behaviour in real time.
2 Copyright (C) 2009-2011, Aesalon development team.
4 Aesalon is distributed under the terms of the GNU GPLv3. See
5 the included file LICENSE for more information.
7 @file src/monitor/Aesalon.cpp
8 */
10 #include <iostream>
11 #include "Exception.h"
13 #include "monitor/Coordinator.h"
14 #include "util/MessageSystem.h"
16 int main(int argc, char *argv[]) {
17 try {
18 Monitor::Coordinator coordinator(argv);
19 coordinator.run();
20 return coordinator.returnValue();
22 catch(Exception exception) {
23 std::cout << exception.message() << std::endl;
25 return 0;