forked from niXman/singleapplication
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
28 lines (20 loc) · 646 Bytes
/
main.cpp
File metadata and controls
28 lines (20 loc) · 646 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
#include <singleapplication.hpp>
#include <iostream>
/***************************************************************************/
int main2(int, char**) {
std::cout << "from main2()" << std::endl;
return 0;
}
/***************************************************************************/
int main(int argc, char** argv) {
int retcode = 0;
try {
single_application app(argc, argv, main2);
retcode = app.exec();
} catch (const std::exception& ex) {
std::cout << "[exception] \"" << ex.what() << "\"" << std::endl;
retcode = 1;
}
return retcode;
}
/***************************************************************************/