4 Quoter_Stock_i::Quoter_Stock_i (const char *symbol
,
8 full_name_ (full_name
),
14 Quoter_Stock_i::symbol ()
16 return CORBA::string_dup (this->symbol_
.c_str ());
20 Quoter_Stock_i::full_name ()
22 return CORBA::string_dup (this->full_name_
.c_str ());
26 Quoter_Stock_i::price ()
32 Quoter_Stock_i::get_price_and_names (CORBA::String_out symbol
,
33 CORBA::String_out full_name
)
35 symbol
= CORBA::string_dup (this->symbol_
.c_str ());
36 full_name
= CORBA::string_dup (this->full_name_
.c_str ());