]> AND Private Git Repository - loba.git/blob - parameters.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Initial commit.
[loba.git] / parameters.h
1 #ifndef PARAMETERS_H
2 #define PARAMETERS_H
3
4 // Global parameters, shared by all the processes
5 namespace param {
6   
7   extern const char* program_name;
8
9   extern const char* platform_file;
10   extern const char* application_file;
11
12   extern int help_requested;
13   extern bool version_requested;
14
15   int parse_args(int* argc, char* argv[]);
16   void print();
17   void usage();
18
19 } // namespace param
20
21 #endif // !PARAMETERS_H
22
23 // Local variables:
24 // mode: c++
25 // End: