updated documentation

This commit is contained in:
2019-04-08 15:03:30 +02:00
parent efb96869e2
commit 6171915f29
171 changed files with 8018 additions and 684137 deletions

View 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 */