ACE+TAO-6_5_17
[ACE_TAO.git] / TAO / examples / Load_Balancing / Identity_i.h
blob2eba466c8f5b2e11d07fa79112c912393569f0b4
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
4 * @file Identity_i.h
6 * Implements the interface in Identity.idl.
8 * @author Marina Spivak <marina@cs.wustl.edu>
9 */
10 //=============================================================================
12 #ifndef IDENTITY_I_H_
13 #define IDENTITY_I_H_
15 #include "IdentityS.h"
17 class Identity_i :
18 public virtual POA_Identity
20 // = TITLE
21 // This class implements Identity.idl interface.
22 public:
24 /// Constructor - initializes the name of this object.
25 Identity_i (const char *name);
27 /// Destructor.
28 ~Identity_i (void);
30 /// Returns the name of this object.
31 virtual void get_name (CORBA::String_out name);
33 private:
35 /// Stores the name of this object.
36 CORBA::String_var name_;
39 #endif /* IDENTITY_I_H_ */