Motion Master
Loading...
Searching...
No Matches
motion_master.h
Go to the documentation of this file.
1
9#pragma once
10
11#include <string>
12
13// https://github.com/jarro2783/cxxopts/issues/49#issuecomment-342616960
14#ifndef NOMINMAX
15#define NOMINMAX
16#endif
17
18#ifdef WINDOWS_BUILD
19#include <windows.h>
20#endif
21
22#ifdef WINDOWS_BUILD
23#include <mmsystem.h>
24#endif
25
26#include "cxxopts.hpp"
27
28void configureLogging(std::string name);
29
31
32void parseCommandLineArguments(int argc, char* argv[]);
33
35
36void signal_handler(int signum);
const char ** name
Definition: co_dictionary.h:7
void setUpSignalHandlers()
Definition: motion_master.cc:234
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:240
void parseCommandLineArguments(int argc, char *argv[])
Definition: motion_master.cc:176