diff options
author | maximius <none@none> | 2009-10-17 15:51:44 -0700 |
---|---|---|
committer | maximius <none@none> | 2009-10-17 15:51:44 -0700 |
commit | e585187b248f48b3c6e9247b49fa07c6565d65e5 (patch) | |
tree | 637c5b7ddacf41040bef4ea4f75a97da64c6a9bc /dep/ACE_wrappers/ace/DEV.cpp | |
parent | 26b5e033ffde3d161382fc9addbfa99738379641 (diff) |
*Backed out changeset 3be01fb200a5
--HG--
branch : trunk
Diffstat (limited to 'dep/ACE_wrappers/ace/DEV.cpp')
-rw-r--r-- | dep/ACE_wrappers/ace/DEV.cpp | 12 |
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 |