mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
Add missing C++ guards
This commit is contained in:
committed by
Paul Hollinsky
parent
3e4b595fe4
commit
b6692d3762
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user