summaryrefslogtreecommitdiff
path: root/ace/DLL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/DLL.cpp')
-rw-r--r--ace/DLL.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/ace/DLL.cpp b/ace/DLL.cpp
index 7a8df6573a7..00363d51bbf 100644
--- a/ace/DLL.cpp
+++ b/ace/DLL.cpp
@@ -11,6 +11,8 @@
ACE_RCSID(ace, DLL, "$Id$")
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
// Default constructor. Also, by default, the object will be closed
// before it is destroyed.
@@ -134,7 +136,7 @@ ACE_DLL::open_i (const ACE_TCHAR *dll_filename,
if (!this->dll_name_)
this->dll_name_ = ACE::strnew (dll_filename);
-
+
this->open_mode_ = open_mode;
this->close_handle_on_destruction_ = close_handle_on_destruction;
@@ -238,3 +240,5 @@ ACE_DLL::set_handle (ACE_SHLIB_HANDLE handle,
return this->open_i (temp, 1, close_handle_on_destruction, handle);
}
+
+ACE_END_VERSIONED_NAMESPACE_DECL