summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/InterfaceRepo/Bug_3495_Regression/TestImpl.h
blob: e3e10eea60efaa1ba034ec995fb9c98c6efaaeee (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_  */