summaryrefslogtreecommitdiff
path: root/TAO/tao/Stub_Factory.cpp
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-12 18:58:44 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-12 18:58:44 +0000
commit849ed197c824efc0c79eace4ebb1b58233ad5307 (patch)
tree468291519f5de84e2d73520262cff279db26aa67 /TAO/tao/Stub_Factory.cpp
parent5070be68f08f53deaee31754020ab36c0391af79 (diff)
downloadATCD-849ed197c824efc0c79eace4ebb1b58233ad5307.tar.gz
Tue Jun 12 13:30:02 2001 Frank Hunleth <fhunleth@cs.wustl.edu>, Angelo Corsaro <corsaro@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Stub_Factory.cpp')
-rw-r--r--TAO/tao/Stub_Factory.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/TAO/tao/Stub_Factory.cpp b/TAO/tao/Stub_Factory.cpp
index 774d4d7bae0..52eae8bf1c2 100644
--- a/TAO/tao/Stub_Factory.cpp
+++ b/TAO/tao/Stub_Factory.cpp
@@ -1,29 +1,10 @@
// $Id$
#include "Stub_Factory.h"
-#include "debug.h"
ACE_RCSID(tao, TAO_Stub_Factory, "$Id$")
- TAO_Stub_Factory::~TAO_Stub_Factory (void)
+TAO_Stub_Factory::~TAO_Stub_Factory (void)
{
// No-Op.
}
-TAO_Stub *
-TAO_Stub_Factory::create_stub (const char *repository_id,
- const TAO_MProfile &profiles,
- TAO_ORB_Core *orb_core,
- CORBA::Environment &ACE_TRY_ENV)
-{
- TAO_Stub *retval = 0;
- if (TAO_debug_level > 0)
- ACE_DEBUG ((LM_DEBUG, "don't want to be here\n"));
-
- ACE_NEW_THROW_EX (retval,
- TAO_Stub (repository_id, profiles, orb_core),
- CORBA::NO_MEMORY (TAO_DEFAULT_MINOR_CODE,
- CORBA::COMPLETED_MAYBE));
- ACE_CHECK_RETURN (retval);
-
- return retval;
-}