mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-13 13:27:14 +02:00
updated documentation
This commit is contained in:
36
exampleCode/customReceiverExample/dummyUDPInterface.h
Executable file
36
exampleCode/customReceiverExample/dummyUDPInterface.h
Executable file
@ -0,0 +1,36 @@
|
||||
#ifndef DUMMYUDPINTERFACE_H
|
||||
#define DUMMYUDPINTERFACE_H
|
||||
|
||||
/***********************************************
|
||||
* @file UDPInterface.h
|
||||
* @short Base class with all the functions for the UDP inteface of the receiver
|
||||
***********************************************/
|
||||
/**
|
||||
* \mainpage Base class with all the functions for the UDP inteface of the receiver
|
||||
*/
|
||||
|
||||
/**
|
||||
* @short Base class with all the functions for the UDP inteface of the receiver
|
||||
*/
|
||||
|
||||
#include "UDPBaseImplementation.h"
|
||||
|
||||
|
||||
class dummyUDPInterface : public virtual slsReceiverDefs, public UDPBaseImplementation {
|
||||
|
||||
|
||||
|
||||
public:
|
||||
|
||||
/** cosntructor & destructor */
|
||||
dummyUDPInterface() { cout << "New dummy UDP Interface" << endl;};
|
||||
~dummyUDPInterface() {cout << "Destroying dummy UDP Interface" << endl;};
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
#endif /* #ifndef DUMMYUDPINTERFACE_H */
|
Reference in New Issue
Block a user