summaryrefslogtreecommitdiff
path: root/TAO/examples/Load_Balancing/Identity_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Load_Balancing/Identity_i.h')
-rw-r--r--TAO/examples/Load_Balancing/Identity_i.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/TAO/examples/Load_Balancing/Identity_i.h b/TAO/examples/Load_Balancing/Identity_i.h
deleted file mode 100644
index 7d490030ba2..00000000000
--- a/TAO/examples/Load_Balancing/Identity_i.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-// ============================================================================
-//
-// = FILENAME
-// Identity_i.h
-//
-// = DESCRIPTION
-// Implements the interface in Identity.idl.
-//
-// = AUTHOR
-// Marina Spivak <marina@cs.wustl.edu>
-//
-// ============================================================================
-#ifndef IDENTITY_I_H_
-#define IDENTITY_I_H_
-
-#include "IdentityS.h"
-
-// This is to remove "inherits via dominance" warnings from MSVC.
-#if defined (_MSC_VER)
-# pragma warning (disable : 4250)
-#endif /* _MSC_VER */
-
-class Identity_i :
- public virtual POA_Identity,
- public virtual PortableServer::RefCountServantBase
-{
- // = TITLE
- // This class implements Identity.idl interface.
-public:
-
- Identity_i (const char *name);
- // Constructor - initializes the name of this object.
-
- ~Identity_i (void);
- // Destructor.
-
- virtual void get_name (CORBA::String_out name,
- CORBA::Environment &ACE_TRY_ENV =
- CORBA::Environment::default_environment ())
- ACE_THROW_SPEC ((CORBA::SystemException));
- // Returns the name of this object.
-
-private:
-
- CORBA::String_var name_;
- // Stores the name of this object.
-};
-
-#endif /* IDENTITY_I_H_ */