Changes to attempt to silence bcc64x
[ACE_TAO.git] / TAO / examples / Load_Balancing / Identity_i.cpp
blob5f2f897ed70d45e4fee298bcbfc801d030aebad2
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
4 * @file Identity_i.cpp
6 * Implements the interface in Identity.idl.
8 * @author Marina Spivak <marina@cs.wustl.edu>
9 */
10 //=============================================================================
12 #include "Identity_i.h"
14 Identity_i::Identity_i (const char *name)
15 : name_ (name)
19 Identity_i::~Identity_i ()
23 void
24 Identity_i::get_name (CORBA::String_out name
27 name = this->name_.in ();