summaryrefslogtreecommitdiff
path: root/ACE/ace/Recyclable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Recyclable.cpp')
-rw-r--r--ACE/ace/Recyclable.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/ACE/ace/Recyclable.cpp b/ACE/ace/Recyclable.cpp
new file mode 100644
index 00000000000..70cb3d95c9d
--- /dev/null
+++ b/ACE/ace/Recyclable.cpp
@@ -0,0 +1,22 @@
+//$Id$
+#include "ace/Recyclable.h"
+
+
+#if !defined (__ACE_INLINE__)
+#include "ace/Recyclable.inl"
+#endif /* __ACE_INLINE __ */
+
+
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+ACE_Recyclable::ACE_Recyclable (ACE_Recyclable_State initial_state)
+ : recycle_state_ (initial_state)
+{
+}
+
+ACE_Recyclable::~ACE_Recyclable (void)
+{
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL