repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1551 from DOCGroup/plm_jira_333
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
examples
/
LoadBalancing
/
Stock.h
blob
b348be6e4c26c4a3dd117d5a84aeb05d73cf7534
1
2
#ifndef STOCK_H
3
#define STOCK_H
4
5
#include
"TestS.h"
6
#include <string>
7
8
class
Stock
9
:
public POA_Test
::
Stock
10
{
11
public
:
12
Stock
(
const char
*
symbol
,
13
const char
*
full_name
,
14
CORBA
::
Double price
);
15
16
char
*
symbol
();
17
char
*
full_name
();
18
CORBA
::
Double
price
();
19
20
private
:
21
#if defined (HPUX) && (ACE_HAS_STANDARD_CPP_LIBRARY == 0)
22
string symbol_
;
23
string full_name_
;
24
#else
25
std
::
string symbol_
;
26
std
::
string full_name_
;
27
#endif
/* HPUX */
28
CORBA
::
Double price_
;
29
};
30
31
#endif
/* STOCK_H */