summaryrefslogtreecommitdiff
path: root/ace/IOStream.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-17 03:08:32 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-01-17 03:08:32 +0000
commit2793714fe0c012276471e1be5f322bc60a884db1 (patch)
tree26944b622d714a0247930649d41525afcf41ab0a /ace/IOStream.h
parentfc95947d076de3b8f6056e8d16cb4badc0965500 (diff)
downloadATCD-2793714fe0c012276471e1be5f322bc60a884db1.tar.gz
.
Diffstat (limited to 'ace/IOStream.h')
-rw-r--r--ace/IOStream.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/ace/IOStream.h b/ace/IOStream.h
index c1ecb5c9604..d98e8a3b399 100644
--- a/ace/IOStream.h
+++ b/ace/IOStream.h
@@ -344,6 +344,16 @@ typedef ostream& (*__omanip_)(ostream&);
// operators. Notice how the ipfx() and isfx() functions are used.
#define GET_SIG(MT,DT) inline virtual MT& operator>> (DT v)
+#if defined (__KCC)
+#define GET_CODE { \
+ if (ipfx (0)) \
+ { \
+ (*((istream*)this)) >> (v); \
+ } \
+ isfx (); \
+ return *this; \
+ }
+#else
#define GET_CODE { \
if (ipfx (0)) \
{ \
@@ -352,6 +362,7 @@ typedef ostream& (*__omanip_)(ostream&);
isfx (); \
return *this; \
}
+#endif /* __KCC */
#define GET_PROT(MT,DT,CODE) GET_SIG(MT,DT) CODE
#define GET_FUNC(MT,DT) GET_PROT(MT,DT,GET_CODE)
@@ -360,6 +371,16 @@ typedef ostream& (*__omanip_)(ostream&);
// operators. Notice how the opfx() and osfx() functions are used.
#define PUT_SIG(MT,DT) inline virtual MT& operator<< (DT v)
+#if defined (__KCC)
+#define PUT_CODE { \
+ if (opfx ()) \
+ { \
+ (*((ostream *) this)) << (v); \
+ } \
+ osfx (); \
+ return *this; \
+ }
+#else
#define PUT_CODE { \
if (opfx ()) \
{ \
@@ -368,6 +389,7 @@ typedef ostream& (*__omanip_)(ostream&);
osfx (); \
return *this; \
}
+#endif /* __KCC */
#define PUT_PROT(MT,DT,CODE) PUT_SIG(MT,DT) CODE
#define PUT_FUNC(MT,DT) PUT_PROT(MT,DT,PUT_CODE)