summaryrefslogtreecommitdiffstats
path: root/WebServer/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebServer/Globals.h')
-rw-r--r--WebServer/Globals.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/WebServer/Globals.h b/WebServer/Globals.h
index 405de1075..389654d33 100644
--- a/WebServer/Globals.h
+++ b/WebServer/Globals.h
@@ -8,6 +8,29 @@
+// Compiler-dependent stuff:
+#ifndef _MSC_VER
+ // Non-MS compilers don't know the override keyword
+ #define override
+#else
+ // MSVC produces warning C4481 on the override keyword usage, so disable the warning altogether
+ #pragma warning(disable:4481)
+#endif // _MSC_VER
+
+
+
+
+
+// A macro to disallow the copy constructor and operator= functions
+// This should be used in the private: declarations for any class that shouldn't allow copying itself
+#define DISALLOW_COPY_AND_ASSIGN(TypeName) \
+ TypeName(const TypeName &); \
+ void operator=(const TypeName &)
+
+
+
+
+
// OS-dependent stuff:
#ifdef _WIN32
#define WIN32_LEAN_AND_MEAN