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
/
StockFactory.h
blob
17f030929c9dad4c45740d4fe404f1d617d5fa03
1
2
#ifndef STOCKFACTORY_H
3
#define STOCKFACTORY_H
4
5
#include
"TestS.h"
6
#include
"Stock.h"
7
8
class
StockFactory
9
:
public POA_Test
::
StockFactory
10
{
11
public
:
12
StockFactory
(
CORBA
::
ORB_ptr orb
,
int
number
);
13
14
Test
::
Stock_ptr
get_stock
(
const char
*
symbol
);
15
16
virtual
void
shutdown
(
void
);
17
18
private
:
19
CORBA
::
ORB_var orb_
;
20
Stock rhat_
;
21
Stock msft_
;
22
int
number_
;
23
};
24
25
#endif
/* STOCKFACTORY_H */