1
2
3
4
5
6 #ifndef CMAJOR_RT_COMMAND_LINE_INCLUDED
7 #define CMAJOR_RT_COMMAND_LINE_INCLUDED
8 #include <cmajor/rt/RtApi.hpp>
9 #include <stdint.h>
10
11 extern "C" int32_t RtArgc();
12 extern "C" const char** RtArgv();
13
14 namespace cmajor { namespace rt {
15
16 void InitCommandLine();
17 void DoneCommandLine();
18
19 } }
20
21 #endif // CMAJOR_RT_COMMAND_LINE_INCLUDED