diff options
Diffstat (limited to 'Tools/CodeTools/Source/Pccts/h/pccts_istream.h')
-rw-r--r-- | Tools/CodeTools/Source/Pccts/h/pccts_istream.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Tools/CodeTools/Source/Pccts/h/pccts_istream.h b/Tools/CodeTools/Source/Pccts/h/pccts_istream.h new file mode 100644 index 0000000000..e25cb8c483 --- /dev/null +++ b/Tools/CodeTools/Source/Pccts/h/pccts_istream.h @@ -0,0 +1,10 @@ +#ifndef __PCCTS_ISTREAM_H__
+#define __PCCTS_ISTREAM_H__
+
+#ifdef PCCTS_USE_NAMESPACE_STD
+#include <istream>
+#else
+#include <istream.h>
+#endif
+
+#endif
|