1
0
Fork 0

Include guards instead of #pragma once

This commit is contained in:
Andreas Streichardt 2016-04-19 17:40:51 +02:00
parent f41d9c41c4
commit c738773f22
3 changed files with 13 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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