mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-08 19:10:42 +02:00
Compiles
This commit is contained in:
parent
69fb5876cb
commit
4ae2edf686
@ -249,9 +249,12 @@ class jungfrauLGADStrixelsDataQuadH5 : public slsDetectorData<uint16_t> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//The following functions are pure virtual in the base class. But I don't want them to be accessible here!
|
//The following functions are pure virtual in the base class. But I don't want them to be accessible here!
|
||||||
char* readNextFrame( std::ifstream &filebin );
|
//Implement the functions as private (to satisfy the linker)
|
||||||
int getFrameNumber(char *buff); //Provided via public method readNextFrame
|
int getFrameNumber(char* buff){return 0;} //Provided via public method readNextFrame
|
||||||
int getPacketNumber(char *buff); //Not provided
|
int getPacketNumber(char* buff){return 0;} //Not provided
|
||||||
|
|
||||||
|
//Mark overwritten functions as override final
|
||||||
|
char* readNextFrame( std::ifstream &filebin ) override final {return nullptr;}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user