mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 23:10:02 +02:00
33 lines
557 B
C++
33 lines
557 B
C++
/********************************************//**
|
|
* @file FileWriter.h
|
|
* @short sets/gets properties for the file, creates/closes the file and writes data to it
|
|
***********************************************/
|
|
#ifndef FILE_WRITER_H
|
|
#define FILE_WRITER_H
|
|
|
|
|
|
|
|
/**
|
|
*@short sets/gets properties for the file, creates/closes the file and writes data to it
|
|
*/
|
|
|
|
class FileWriter : private virtual slsReceiverDefs {
|
|
|
|
public:
|
|
/**
|
|
* Constructor
|
|
* creates the File Writer
|
|
*/
|
|
FileWriter();
|
|
|
|
/**
|
|
* Destructor
|
|
*/
|
|
~FileWriter();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|