clang-format

This commit is contained in:
Erik Frojdh
2020-11-18 18:01:39 +01:00
parent 8565ac6cf2
commit 06dbf82e93
39 changed files with 57 additions and 59 deletions

View File

@ -1,7 +1,7 @@
#pragma once
#include "Implementation.h"
#include "sls/ServerSocket.h"
#include "receiver_defs.h"
#include "sls/ServerSocket.h"
#include "sls/sls_detector_defs.h"
#include "sls/sls_detector_funcs.h"
class ServerInterface;

View File

@ -51,8 +51,8 @@ class DataProcessor : private virtual slsDetectorDefs, public ThreadObject {
DataProcessor(int ind, detectorType dtype, Fifo *f, fileFormat *ftype,
bool fwenable, bool *mfwenable, bool *dsEnable,
uint32_t *freq, uint32_t *timer, uint32_t *sfnum, bool *fp,
bool *act, bool *depaden, bool *sm,
std::vector<int> *cdl, int *cdo, int *cad);
bool *act, bool *depaden, bool *sm, std::vector<int> *cdl,
int *cdo, int *cad);
/**
* Destructor

View File

@ -9,8 +9,8 @@
*data to it
*/
#include "sls/logger.h"
#include "receiver_defs.h"
#include "sls/logger.h"
#include "sls/sls_detector_defs.h"
#include <string>

View File

@ -7,9 +7,9 @@
*@short abstract for setting/getting properties of detector data
*/
#include "receiver_defs.h"
#include "sls/ToString.h"
#include "sls/logger.h"
#include "receiver_defs.h"
#include "sls/sls_detector_defs.h"
#include <cmath> //ceil
#include <vector>

View File

@ -1,8 +1,8 @@
#pragma once
#include "receiver_defs.h"
#include "sls/container_utils.h"
#include "sls/logger.h"
#include "sls/network_utils.h"
#include "receiver_defs.h"
class GeneralData;
class Listener;
class DataProcessor;

View File

@ -15,7 +15,7 @@
#include <sys/syscall.h>
#include <unistd.h>
namespace sls{
namespace sls {
Receiver::~Receiver() = default;
@ -145,4 +145,4 @@ void Receiver::registerCallBackRawDataModifyReady(
tcpipInterface->registerCallBackRawDataModifyReady(func, arg);
}
}
} // namespace sls