Merge branch 'developer' into mysocket

This commit is contained in:
Erik Frojdh
2019-05-27 09:12:10 +02:00
36 changed files with 670 additions and 1108 deletions

View File

@ -6,18 +6,17 @@
class CmdLineParser {
public:
void Parse(int argc, char *argv[]);
void Parse(int argc, const char * const argv[]);
void Parse(const std::string &s);
void Print();
//getters
int multi_id() const { return multi_id_; };
int detector_id() const { return detector_id_; };
int n_arguments() const { return arguments_.size(); }
const std::string &command() const { return command_; }
const std::string &executable() const { return executable_; }
const std::vector<std::string> &arguments() const { return arguments_; };
std::vector<char *> argv();
std::vector<const char *> argv() const;
private:
void DecodeIdAndPosition(const char *c);

View File

@ -2,9 +2,10 @@
#define GITBRANCH "refgui"
#define APIGOTTHARD 0x190108
#define APIMOENCH 0x181108
#define APIJUNGFRAU 0x190405
#define APILIB 0x190405
#define APIRECEIVER 0x190405
#define APIGUI 0x190405
#define APICTB 0x190514
#define APIEIGER 0x190516
#define APICTB 0x190516
#define APIJUNGFRAU 0x190517