summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/ping_interrupt/Test_i.h
blob: 9693977cc8c51afb5ca6e5e05c6d1165bbae8dca (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
/* -*- C++ -*- $Id$ */

#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:
  Test_i (short server_num);
  virtual ~Test_i ();

  virtual CORBA::Short get_server_num (CORBA::Short delay_secs);

private:
  CORBA::Short server_num_;
};

#endif /* TEST_I_H_ */