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
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
examples
/
LoadBalancing
/
StockFactory.h
blob
7cdf0431a686e4bd8b6ba14d5fd7e0520723a8ac
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
();
17
18
private
:
19
CORBA
::
ORB_var orb_
;
20
Stock rhat_
;
21
Stock msft_
;
22
int
number_
;
23
};
24
25
#endif
/* STOCKFACTORY_H */