Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / Load_Balancing / Identity_i.h
blob53d7bbf57c3fed9e4fe5296a99bd6c17800b6916
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:
23 /// Constructor - initializes the name of this object.
24 Identity_i (const char *name);
26 /// Destructor.
27 ~Identity_i ();
29 /// Returns the name of this object.
30 virtual void get_name (CORBA::String_out name);
32 private:
33 /// Stores the name of this object.
34 CORBA::String_var name_;
37 #endif /* IDENTITY_I_H_ */