aboutsummaryrefslogtreecommitdiff
path: root/dep/ACE_wrappers/ace/DEV.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dep/ACE_wrappers/ace/DEV.cpp')
-rw-r--r--dep/ACE_wrappers/ace/DEV.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/dep/ACE_wrappers/ace/DEV.cpp b/dep/ACE_wrappers/ace/DEV.cpp
index 4b335a4fd61..7b4fb00f2b2 100644
--- a/dep/ACE_wrappers/ace/DEV.cpp
+++ b/dep/ACE_wrappers/ace/DEV.cpp
@@ -1,12 +1,19 @@
// $Id: DEV.cpp 80826 2008-03-04 14:51:23Z wotte $
+
#include "ace/DEV.h"
+
#include "ace/OS_NS_unistd.h"
+
#if !defined (__ACE_INLINE__)
#include "ace/DEV.inl"
#endif /* __ACE_INLINE__ */
+
ACE_RCSID(ace, DEV, "$Id: DEV.cpp 80826 2008-03-04 14:51:23Z wotte $")
+
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
ACE_ALLOC_HOOK_DEFINE(ACE_DEV)
+
void
ACE_DEV::dump (void) const
{
@@ -14,12 +21,16 @@ ACE_DEV::dump (void) const
ACE_TRACE ("ACE_DEV::dump");
#endif /* ACE_HAS_DUMP */
}
+
// This is the do-nothing constructor.
+
ACE_DEV::ACE_DEV (void)
{
ACE_TRACE ("ACE_DEV::ACE_DEV");
}
+
// Close the device
+
int
ACE_DEV::close (void)
{
@@ -28,5 +39,6 @@ ACE_DEV::close (void)
this->set_handle (ACE_INVALID_HANDLE);
return result;
}
+
ACE_END_VERSIONED_NAMESPACE_DECL