summaryrefslogtreecommitdiff
path: root/TAO/examples/Load_Balancing/Identity_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Load_Balancing/Identity_i.cpp')
-rw-r--r--TAO/examples/Load_Balancing/Identity_i.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/TAO/examples/Load_Balancing/Identity_i.cpp b/TAO/examples/Load_Balancing/Identity_i.cpp
deleted file mode 100644
index 30ceeeac9ac..00000000000
--- a/TAO/examples/Load_Balancing/Identity_i.cpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-// ============================================================================
-//
-// = FILENAME
-// Identity_i.cpp
-//
-// = DESCRIPTION
-// Implements the interface in Identity.idl.
-//
-// = AUTHOR
-// Marina Spivak <marina@cs.wustl.edu>
-//
-// ============================================================================
-#include "Identity_i.h"
-
-Identity_i::Identity_i (const char *name)
- : name_ (name)
-{
-}
-
-Identity_i::~Identity_i (void)
-{
-}
-
-void
-Identity_i::get_name (CORBA::String_out name,
- CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException))
-{
- ACE_UNUSED_ARG (ACE_TRY_ENV);
- name = this->name_.in ();
-}