Fix header guards

This commit is contained in:
2018-02-12 10:22:04 +01:00
parent f7619630a1
commit 205770647a
3 changed files with 10 additions and 5 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
#ifndef H5_FILE_FORMAT_H
#define H5_FILE_FORMAT_H
#ifndef H5FORMAT_H
#define H5FORMAT_H
#include <string>
#include <list>
+6 -1
View File
@@ -1,3 +1,6 @@
#ifndef PROCESSMANAGER_H
#define PROCESSMANAGER_H
#include "WriterManager.hpp"
#include "H5Format.hpp"
#include "RingBuffer.hpp"
@@ -10,4 +13,6 @@ namespace ProcessManager
void receive_zmq(WriterManager& manager, RingBuffer& ring_buffer, ZmqReceiver& receiver, const H5Format& format);
void write_h5(WriterManager& manager, const H5Format& format, RingBuffer& ring_buffer);
};
};
#endif
+2 -2
View File
@@ -1,5 +1,5 @@
#ifndef REST_INTERFACE_H
#define REST_INTERFACE_H
#ifndef RESTAPI_H
#define RESTAPI_H
#include "WriterManager.hpp"