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 #2317 from jwillemsen/jwi-deleteop
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
examples
/
LoadBalancing
/
Stock.h
blob
42fea7f5ac894c538b895dc2b96bfc8f11e242f1
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
std
::
string symbol_
;
22
std
::
string full_name_
;
23
CORBA
::
Double price_
;
24
};
25
26
#endif
/* STOCK_H */