Motion Master
Loading...
Searching...
No Matches
motion_master.h
Go to the documentation of this file.
1
14#pragma once
15
16#include <string>
17
18// https://github.com/jarro2783/cxxopts/issues/49#issuecomment-342616960
19#ifndef NOMINMAX
20#define NOMINMAX
21#endif
22
23#ifdef WINDOWS_BUILD
24#include <windows.h>
25#endif
26
27#ifdef WINDOWS_BUILD
28#include <mmsystem.h>
29#endif
30
31#include "cxxopts.hpp"
32
33void configureLogging(std::string name);
34
36
37void parseCommandLineArguments(int argc, char* argv[]);
38
40
41void signal_handler(int signum);
const char ** name
Definition: co_dictionary.h:7
void setUpSignalHandlers()
Definition: motion_master.cc:241
void configureLogging(std::string name)
Definition: motion_master.cc:151
void increaseThreadsPriorityLevels()
Definition: motion_master.cc:114
void signal_handler(int signum)
Definition: motion_master.cc:247
void parseCommandLineArguments(int argc, char *argv[])
Definition: motion_master.cc:176