summaryrefslogtreecommitdiff
path: root/TAO/tests/Abstract_Interface/test_i.h
blob: f6c2c3673e83307b0e1518df8e612734607ff677 (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++ -*-
#ifndef TAO_TEST_I_H
#define TAO_TEST_I_H

#include "testS.h"

class foo_i : public virtual POA_foo
{
  virtual char * foo_op (const char * inarg);

  virtual char * base_op (const char * inarg);
};

class passer_i : public virtual POA_passer
{
public:
  passer_i (CORBA::ORB_ptr orb, PortableServer::POA_ptr poa);

  virtual void pass_ops (base_out outarg);

  virtual void pass_state (base_out outarg);

  virtual void pass_nil (base_out outarg);

  virtual void shutdown ();
private:
  CORBA::ORB_var orb_;
  PortableServer::POA_var poa_;
};

#endif /* TAO_TEST_I_H */