summaryrefslogtreecommitdiff
path: root/ace/LSOCK.i
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-06-14 13:58:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-06-14 13:58:59 +0000
commit80704c4b3d824a163361567d733d7abf046c5e33 (patch)
treea0cf7224cf47f51ebf9c88774dd3c7f2ce055852 /ace/LSOCK.i
parentd94228526efd6d8c614701abdc88111e177dc68e (diff)
downloadATCD-80704c4b3d824a163361567d733d7abf046c5e33.tar.gz
ChangeLogTag: Mon Jun 14 13:58:12 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/LSOCK.i')
-rw-r--r--ace/LSOCK.i14
1 files changed, 6 insertions, 8 deletions
diff --git a/ace/LSOCK.i b/ace/LSOCK.i
index c5b0057fa0e..fcd0e6887fc 100644
--- a/ace/LSOCK.i
+++ b/ace/LSOCK.i
@@ -1,11 +1,9 @@
/* -*- C++ -*- */
// $Id$
-// LSOCK.i
+// Simple-minded constructor.
-// Simple-minded constructor.
-
-ASYS_INLINE
+ACE_INLINE
ACE_LSOCK::ACE_LSOCK (void)
: aux_handle_ (ACE_INVALID_HANDLE)
{
@@ -14,7 +12,7 @@ ACE_LSOCK::ACE_LSOCK (void)
// Sets the underlying file descriptor.
-ASYS_INLINE void
+ACE_INLINE void
ACE_LSOCK::set_handle (ACE_HANDLE handle)
{
ACE_TRACE ("ACE_LSOCK::set_handle");
@@ -23,16 +21,16 @@ ACE_LSOCK::set_handle (ACE_HANDLE handle)
// Gets the underlying file descriptor.
-ASYS_INLINE ACE_HANDLE
+ACE_INLINE ACE_HANDLE
ACE_LSOCK::get_handle (void) const
{
ACE_TRACE ("ACE_LSOCK::get_handle");
return this->aux_handle_;
}
-// Sets the underlying file descriptor.
+// Sets the underlying file descriptor.
-ASYS_INLINE
+ACE_INLINE
ACE_LSOCK::ACE_LSOCK (ACE_HANDLE handle)
: aux_handle_ (handle)
{