1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

dumper: fix styles for steffen

Signed-off-by: Manuel Pitz <manuel.pitz@eonerc.rwth-aachen.de>
This commit is contained in:
Manuel Pitz 2023-07-06 11:59:58 +02:00
parent 70d00ba774
commit 9c0517cb74

View file

@ -30,11 +30,13 @@ Dumper::~Dumper() {
closeSocket();
}
bool Dumper::isActive(){
bool Dumper::isActive()
{
return active;
}
int Dumper::setActive() {
int Dumper::setActive()
{
active = true;
return 1;
}
@ -67,12 +69,14 @@ int Dumper::closeSocket()
return 0;
}
int Dumper::setPath(std::string socketPathIn) {
int Dumper::setPath(std::string socketPathIn)
{
socketPath = socketPathIn;
return 1;
}
void Dumper::writeDataBinary(unsigned len, double *yData, double *xData){
void Dumper::writeDataBinary(unsigned len, double *yData, double *xData)
{
if (warningCounter > 10)
return;