diff --git a/include/villas/dumper.hpp b/include/villas/dumper.hpp index 0c5b65a93..e11aa9636 100644 --- a/include/villas/dumper.hpp +++ b/include/villas/dumper.hpp @@ -27,18 +27,20 @@ namespace villas { namespace node { class Dumper { - protected: - int socketFd; - std::string socketName; - bool supressRepeatedWarning; - uint64_t warningCounter; - public: - Dumper(std::string socketNameIn); - ~Dumper(); - int openSocket(std::string socketNameIn); - void closeSocket(); - void writeData(uint len, double* yData, double* xData = nullptr); - }; +protected: + int socketFd; + std::string socketName; + bool supressRepeatedWarning; + uint64_t warningCounter; + +public: + Dumper(std::string socketNameIn); + ~Dumper(); + int openSocket(std::string socketNameIn); + void closeSocket(); + void writeData(uint len, double* yData, double* xData = nullptr); +}; + } /* namespace node */ -} /* namespace villas */ \ No newline at end of file +} /* namespace villas */