summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/manual_start/test_i.h
blob: fdf55c85fd120c53ee7ed32fcbf40115fef1fb9c (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
/* -*- C++ -*-  */

#ifndef TEST_I_H_
#define TEST_I_H_

#include "testS.h"

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

class  Test_i : public virtual POA_Test
{
public:
  //Constructor
  Test_i (void);

  //Destructor
  virtual ~Test_i (void);

  virtual void contact (void);

private:
};

#endif /* TEST_I_H_ */