diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-12-21 19:26:46 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-12-21 19:26:46 +0000 |
commit | 9e9254f32711d4ecf1e3f71b54982eaf6845388e (patch) | |
tree | 760551d54bece3e52d2f1cd3d05b26d9c1c1439b /ace/IOStream_T.h | |
parent | 4ecd5d0edb663fdba4935912ccdbbf79a66482ae (diff) | |
download | ATCD-9e9254f32711d4ecf1e3f71b54982eaf6845388e.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/IOStream_T.h')
-rw-r--r-- | ace/IOStream_T.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/IOStream_T.h b/ace/IOStream_T.h index 298e34b67b2..2a35aa27697 100644 --- a/ace/IOStream_T.h +++ b/ace/IOStream_T.h @@ -68,6 +68,7 @@ protected: template <class STREAM> class ACE_IOStream : public iostream, public STREAM +{ // = TITLE // A template adapter for creating an iostream-like object using // an ACE IPC Stream for the actual I/O. Iostreams use an @@ -99,7 +100,6 @@ class ACE_IOStream : public iostream, public STREAM // In the iostream.cpp file is an example of why it is necessary // to overload all of the get/put operators when you want to // customize only one or two. -{ public: // = Initialization and termination methods. ACE_IOStream (STREAM &stream, @@ -224,6 +224,7 @@ private: template <class STREAM> class ACE_SOCK_Dgram_SC : public STREAM +{ // = TITLE // "Dgram_SC" is short for "Datagram Self-Contained." // @@ -235,7 +236,6 @@ class ACE_SOCK_Dgram_SC : public STREAM // what this class is for. Here, we keep an address object so // that we can remember who last sent us data. When we write // back, we're then able to write back to that same address. -{ public: ACE_SOCK_Dgram_SC (void); ACE_SOCK_Dgram_SC (STREAM &source, |