Add missing C++ guards

This commit is contained in:
Kyle Schwarz
2020-08-18 16:01:51 -04:00
committed by Paul Hollinsky
parent 3e4b595fe4
commit b6692d3762
75 changed files with 299 additions and 5 deletions
+4
View File
@@ -1,6 +1,8 @@
#ifndef __EVENTCALLBACK_H_
#define __EVENTCALLBACK_H_
#ifdef __cplusplus
#include <functional>
#include <memory>
#include "event.h"
@@ -36,4 +38,6 @@ private:
}
#endif // __cplusplus
#endif
+5 -1
View File
@@ -1,11 +1,13 @@
#ifndef __ICSNEO_API_EVENTMANAGER_H_
#define __ICSNEO_API_EVENTMANAGER_H_
#ifdef __cplusplus
#include <vector>
#include <list>
#include <mutex>
#include <functional>
#include<map>
#include <map>
#include <thread>
#include <algorithm>
#include "icsneo/api/event.h"
@@ -206,4 +208,6 @@ private:
}
#endif // __cplusplus
#endif