1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

wrap all library code into namespace if VCMI_LIB_NAMESPACE is defined

preparation for having client and server in a single process
This commit is contained in:
Andrey Filipenkov
2022-07-26 16:07:42 +03:00
parent 1319c8f197
commit ff635edc0b
467 changed files with 2117 additions and 211 deletions

View File

@@ -15,6 +15,8 @@
#include "IHandlerBase.h"
#include "JsonNode.h"
VCMI_LIB_NAMESPACE_BEGIN
class JsonNode;
class JsonSerializeFormat;
class Services;
@@ -61,7 +63,7 @@ public:
const std::string & getName() const override;
const std::string & getSource() const override;
void performRegistration(::Services * services) const;
void performRegistration(Services * services) const;
private:
const ScriptHandler * owner;
@@ -85,7 +87,7 @@ private:
ServerCallback * srv;
};
class DLL_LINKAGE ScriptHandler : public ::IHandlerBase, public Service
class DLL_LINKAGE ScriptHandler : public IHandlerBase, public Service
{
public:
ScriptMap objects;
@@ -132,4 +134,6 @@ private:
};
}
VCMI_LIB_NAMESPACE_END
#endif