summaryrefslogtreecommitdiff
path: root/TAO/tao/FlResource_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/FlResource_Factory.cpp')
-rw-r--r--TAO/tao/FlResource_Factory.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/TAO/tao/FlResource_Factory.cpp b/TAO/tao/FlResource_Factory.cpp
deleted file mode 100644
index b0529d29a0e..00000000000
--- a/TAO/tao/FlResource_Factory.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-//$Id$
-
-#include "FlResource_Factory.h"
-#include "debug.h"
-#include "ace/FlReactor.h"
-
-ACE_RCSID( TAO_FlResource,
- FlResource_Factory,
- "$Id$");
-
-namespace TAO
-{
-
- FlResource_Factory::FlResource_Factory ():
- reactor_impl_( 0 )
- {
- }
-
- ACE_Reactor_Impl *
- FlResource_Factory::reactor_impl (void)
- {
- // synchronized by external locks
- if (!this->reactor_impl_)
- {
- ACE_NEW_RETURN (this->reactor_impl_,
- ACE_FlReactor (),
- 0);
-
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG,
- "TAO (%P|%t) - ACE_FlReactor created \n"));
- }
-
- return this->reactor_impl_;
- }
-}