mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-22 03:40:04 +02:00
24 lines
416 B
C++
Executable File
24 lines
416 B
C++
Executable File
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
|
|
class qClient {
|
|
|
|
public:
|
|
qClient(char *h);
|
|
virtual ~qClient();
|
|
void executeLine(int narg, char *args[]);
|
|
|
|
private:
|
|
std::string printCommands();
|
|
std::string getStatus();
|
|
void startAcquisition(bool blocking = false);
|
|
void stopAcquisition();
|
|
void exitServer();
|
|
|
|
std::string hostname;
|
|
int controlPort;
|
|
int stopPort;
|
|
};
|