aboutsummaryrefslogtreecommitdiff
path: root/zenutil/include
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-17 09:54:50 +0200
committerStefan Boberg <[email protected]>2021-09-17 09:54:50 +0200
commit6da25650aa4bf87dcd5e3d612c615e0b8240015f (patch)
treee23e686b6296e860a010b6e3fa580eea8481c185 /zenutil/include
parentMoved zenserverprocess into zenutil/zenserverprocess.h (diff)
downloadzen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.tar.xz
zen-6da25650aa4bf87dcd5e3d612c615e0b8240015f.zip
Added namespace scopes to more includes for better consistency
Diffstat (limited to 'zenutil/include')
-rw-r--r--zenutil/include/zenutil/zenserverprocess.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/zenutil/include/zenutil/zenserverprocess.h b/zenutil/include/zenutil/zenserverprocess.h
index d1897d5e2..f0924f048 100644
--- a/zenutil/include/zenutil/zenserverprocess.h
+++ b/zenutil/include/zenutil/zenserverprocess.h
@@ -13,6 +13,8 @@
#include <filesystem>
#include <optional>
+namespace zen {
+
class ZenServerEnvironment
{
public:
@@ -128,3 +130,5 @@ private:
int m_MaxEntryCount = 131072 / sizeof(ZenServerEntry);
ZenServerEntry* m_OurEntry = nullptr;
};
+
+}