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 #2306 from mitza-oci/warnings
[ACE_TAO.git]
/
TAO
/
orbsvcs
/
tests
/
ImplRepo
/
manual_start
/
test_i.h
blob
725882cf6770a504668062937fd10b4a73684250
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
Test_i
:
public virtual
POA_Test
13
{
14
public
:
15
//Constructor
16
Test_i
();
17
18
//Destructor
19
virtual
~
Test_i
();
20
21
virtual
void
contact
();
22
23
private
:
24
};
25
26
#endif
/* TEST_I_H_ */