mirror of https://gitee.com/bigwinds/arangodb
Include guards instead of #pragma once
This commit is contained in:
parent
f41d9c41c4
commit
c738773f22
|
@ -21,7 +21,8 @@
|
|||
/// @author Andreas Streichardt
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
#ifndef ARANGOD_CLUSTER_AGENCY_CALLBACK_H
|
||||
#define ARANGOD_CLUSTER_AGENCY_CALLBACK_H 1
|
||||
|
||||
#include <functional>
|
||||
#include <memory>
|
||||
|
@ -66,3 +67,6 @@ private:
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/// @author Andreas Streichardt
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
#ifndef ARANGOD_CLUSTER_AGENCY_CALLBACK_REGISTRY_H
|
||||
#define ARANGOD_CLUSTER_AGENCY_CALLBACK_REGISTRY_H 1
|
||||
|
||||
#include "Cluster/AgencyCallback.h"
|
||||
#include "Basics/ReadWriteLock.h"
|
||||
|
@ -73,3 +74,5 @@ private:
|
|||
};
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
@ -21,7 +21,8 @@
|
|||
/// @author Andreas Streichardt
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
#ifndef ARANGOD_CLUSTER_REST_AGENCY_CALLBACKS_HANDLER_H
|
||||
#define ARANGOD_CLUSTER_REST_AGENCY_CALLBACKS_HANDLER_H 1
|
||||
|
||||
#include "Basics/Common.h"
|
||||
#include "RestHandler/RestVocbaseBaseHandler.h"
|
||||
|
@ -52,3 +53,5 @@ class RestAgencyCallbacksHandler : public RestVocbaseBaseHandler {
|
|||
};
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue