aboutsummaryrefslogtreecommitdiff
path: root/contrib/otshell_utils/windows_stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/otshell_utils/windows_stream.h')
-rw-r--r--contrib/otshell_utils/windows_stream.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/otshell_utils/windows_stream.h b/contrib/otshell_utils/windows_stream.h
deleted file mode 100644
index 859e7ee50..000000000
--- a/contrib/otshell_utils/windows_stream.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef WINDOWS_STREAM_H
-#define WINDOWS_STREAM_H
-
-#if defined(_WIN32)
-
-#include <string>
-#include <iostream>
-
-class windows_stream
-{
-public:
- windows_stream(unsigned int pLevel);
- friend std::ostream& operator<<(std::ostream &stream, windows_stream const& object);
-private:
- unsigned int mLevel = 0;
-};
-
-#endif // _WIN32
-
-#endif // WINDOWS_STREAM_H