summaryrefslogtreecommitdiff
path: root/ace/ATM_Stream.h
diff options
context:
space:
mode:
authorruibiao <ruibiao@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-12 16:30:51 +0000
committerruibiao <ruibiao@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-12 16:30:51 +0000
commit33fe98c12f2277cf270edefd8038a972c29bc049 (patch)
tree7398aaadef5768b7bba61447f2128dcdb76d2112 /ace/ATM_Stream.h
parent1d930cea52fdb5cf590fb76d659e628905b060a8 (diff)
downloadATCD-33fe98c12f2277cf270edefd8038a972c29bc049.tar.gz
ace/ATM_{Addr,Stream,Acceptor,Connector,QoS,Params}.{h,cpp,i}: Added support
for Fore ATM on Windows platform. Enabled when ACE_HAS_ATM and ACE_HAS_FORE_ATM_WS2 are defined.
Diffstat (limited to 'ace/ATM_Stream.h')
-rw-r--r--ace/ATM_Stream.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ace/ATM_Stream.h b/ace/ATM_Stream.h
index 2e48f4b6b42..58b7913acf2 100644
--- a/ace/ATM_Stream.h
+++ b/ace/ATM_Stream.h
@@ -1,7 +1,6 @@
/* -*- C++ -*- */
// $Id$
-
// ============================================================================
//
// = LIBRARY
@@ -18,13 +17,13 @@
#ifndef ACE_ATM_STREAM_H
#define ACE_ATM_STREAM_H
-#include "ace/ATM_Addr.h"
-#include "ace/ATM_Params.h"
-
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+#include "ace/ATM_Addr.h"
+#include "ace/ATM_Params.h"
+
#if defined (ACE_HAS_ATM)
#if defined (ACE_WIN32)
@@ -66,12 +65,12 @@ public:
ssize_t recv (void *buf,
size_t n,
int *flags = 0) const;
- // Recv an n byte buffer from the connected transport mechanism
+ // Recv an n byte buffer from the connected transport mechanism.
ssize_t send_n (const void *buf,
size_t n,
int flags) const;
- // Send exactly n bytes to the connected transport mechanism
+ // Send exactly n bytes to the connected transport mechanism.
// = Meta-type info
typedef ACE_ATM_Addr PEER_ADDR;
@@ -84,7 +83,7 @@ public:
private:
ATM_Stream stream_;
- // Typedef'd to the appropriate stream mechanism above
+ // Typedef'd to the appropriate stream mechanism above.
};
#if defined (__ACE_INLINE__)
@@ -93,3 +92,4 @@ private:
#endif /* ACE_HAS_ATM */
#endif /* ACE_ATM_STREAM_H */
+