summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/InterfaceRepo/Bug_3495_Regression/TestImpl.h
blob: 4a4bc5670ddbae121c7939da4b5cf76e75f01d1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// -*- C++ -*-
//
// $Id$


#ifndef TESTIMPL_H_
#define TESTIMPL_H_

#include "TestS.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
#pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */


class  Test_interfaceOne_i
  : public virtual POA_Test::interfaceOne
{
public:
  // Constructor 
  Test_interfaceOne_i (void);
  
  // Destructor 
  virtual ~Test_interfaceOne_i (void);
  
  virtual void getstruct (::Test::structOne_out tester);
};


#endif /* TESTIMPL_H_  */