mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 10:07:59 +02:00
compiles, but doesnt run
This commit is contained in:
@ -57,7 +57,7 @@ class slsReceiverImplementation: private virtual slsDetectorDefs {
|
||||
* Get detector hostname
|
||||
* @return hostname (max of 1000 characters)
|
||||
*/
|
||||
char *getDetectorHostname() const;
|
||||
std::string getDetectorHostname() const;
|
||||
|
||||
/*
|
||||
* Get flipped data across 'axis'
|
||||
@ -82,13 +82,13 @@ class slsReceiverImplementation: private virtual slsDetectorDefs {
|
||||
* Get File Name Prefix (without frame index, file index and extension (_d0_f000000000000_8.raw))
|
||||
* @return file name prefix
|
||||
*/
|
||||
char *getFileName() const;
|
||||
std::string getFileName() const;
|
||||
|
||||
/**
|
||||
* Get File Path
|
||||
* @return file path
|
||||
*/
|
||||
char *getFilePath() const;
|
||||
std::string getFilePath() const;
|
||||
|
||||
/**
|
||||
* Get File Index
|
||||
@ -164,7 +164,7 @@ class slsReceiverImplementation: private virtual slsDetectorDefs {
|
||||
* Get Ehernet Interface
|
||||
* @ethernet interface. eg. eth0 or "" if listening to all
|
||||
*/
|
||||
char *getEthernetInterface() const;
|
||||
std::string getEthernetInterface() const;
|
||||
|
||||
|
||||
//***acquisition parameters***
|
||||
@ -288,13 +288,13 @@ class slsReceiverImplementation: private virtual slsDetectorDefs {
|
||||
* Get streaming source ip
|
||||
* @return streaming source ip
|
||||
*/
|
||||
char *getStreamingSourceIP() const;
|
||||
std::string getStreamingSourceIP() const;
|
||||
|
||||
/**
|
||||
* Get additional json header
|
||||
* @return additional json header
|
||||
*/
|
||||
char *getAdditionalJsonHeader() const;
|
||||
std::string getAdditionalJsonHeader() const;
|
||||
|
||||
/** (not saved in client shared memory)
|
||||
* Get UDP Socket Buffer Size
|
||||
|
@ -115,6 +115,13 @@ class slsReceiverTCPIPInterface : private virtual slsDetectorDefs {
|
||||
/** function not implemented for specific detector */
|
||||
void functionNotImplemented();
|
||||
|
||||
/** mode not implemented for specific detector */
|
||||
void modeNotImplemented(std::string modename, int mode);
|
||||
|
||||
/** validate and set error */
|
||||
template <typename T>
|
||||
void validate(T arg, T retval, std::string modename, bool hex);
|
||||
|
||||
/** Unrecognized Function */
|
||||
int M_nofunc();
|
||||
|
||||
|
Reference in New Issue
Block a user