Go to the source code of this file.
|
| int | main (int argc, char *argv[]) |
◆ main()
| int main |
( |
int | argc, |
|
|
char * | argv[] ) |
Definition at line 25 of file AuditTrailGenerator.cpp.
26{
27
29
30 try
31 {
33 }
34 catch (const std::exception& ex)
35 {
36 std::cerr << "EXCEPTION: " << ex.what() << std::endl;
37 return 1;
38 }
39
40 std::clog << "Done." << std::endl;
41
42 return 0;
43}