summaryrefslogtreecommitdiff
path: root/TAO/tests/Abstract_Interface/test_i.h
blob: 90fae85647595190345e075883501cb701d0e6ca (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
32
33
// -*- C++ -*-
// $Id$

#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 (void);
private:
  CORBA::ORB_var orb_;
  PortableServer::POA_var poa_;
};

#endif /* TAO_TEST_I_H */