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:
parent
70d00ba774
commit
9c0517cb74
1 changed files with 8 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue