summaryrefslogtreecommitdiff
path: root/TAO/examples/Load_Balancing_persistent/Identity_i.h
blob: 3c8c2a5992f1c78a0d2d73c5af7110cc593ad1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* -*- C++ -*- */
//=============================================================================
/**
 *  @file   Identity_i.h
 *
 *  $Id$
 *
 *  Implements the interface in Identity.idl.
 *
 *
 *  @author Marina Spivak <marina@cs.wustl.edu> with modifications by Bala Natarajan <bala@cs.wustl.edu>
 */
//=============================================================================

#ifndef IDENTITY_I_H_
#define IDENTITY_I_H_

#include "IdentityS.h"

class Identity_i :
  public virtual POA_Identity
{
  // = TITLE
  //    This class implements Identity.idl interface.
public:

  /// Constructor - initializes the name of this object.
  Identity_i (const char *name,
              PortableServer::POA_ptr poa);

  /// Destructor.
  ~Identity_i (void);

  /// Returns the name of this object.
  virtual void get_name (CORBA::String_out name);

  /// Method for the POA that will return the persistent POA_ptr stored
  /// in here..
  PortableServer::POA_ptr _default_POA (void);

private:

  /// Stores the name of this object.
  CORBA::String_var name_;

  PortableServer::POA_var poa_;
};

#endif /* IDENTITY_I_H_ */