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
/
tests
/
ImplRepo
/
oneway
/
Test_i.h
blob
bb117cfc24758965f14871194172855eaec22418
1
/* -*- C++ -*- */
2
3
#ifndef TEST_I_H_
4
#define TEST_I_H_
5
6
#include
"TestS.h"
7
8
#if !defined (ACE_LACKS_PRAGMA_ONCE)
9
#pragma once
10
#endif
/* ACE_LACKS_PRAGMA_ONCE */
11
12
class
Terminator
;
13
14
class
Test_i
:
public virtual
POA_Test
15
{
16
public
:
17
//Constructor
18
Test_i
();
19
20
//Destructor
21
virtual
~
Test_i
();
22
23
virtual
void
foo
();
24
25
virtual CORBA
::
Short
get_call_count
();
26
27
private
:
28
CORBA
::
Short count_
;
29
};
30
31
#endif
/* TEST_I_H_ */