-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
36 lines (26 loc) · 841 Bytes
/
main.cpp
File metadata and controls
36 lines (26 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <singleapplication/singleapplication.hpp>
#include <iostream>
/***************************************************************************/
int main2(int, char**) {
std::cout << "from main2()" << std::endl;
sleep(4);
return 0;
}
/***************************************************************************/
int main(int argc, char** argv) {
int retcode = 0;
try {
single_application::single_application app(main2, argc, argv);
if ( app.already_running() ) {
std::cerr << "program already running. terminate." << std::endl;
retcode = EXIT_FAILURE;
} else {
retcode = app.exec();
}
} catch (const std::exception& ex) {
std::cout << "[exception] \"" << ex.what() << "\"" << std::endl;
retcode = 1;
}
return retcode;
}
/***************************************************************************/