summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/Dynamic/test_i.h
blob: 03d5177ae0493c73529ba721ecb4a8b5d47154af (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
34
35
36
37
38
// -*- C++ -*-

// ===================================================================
/**
 *  @file   test_i.h
 *
 *  @author Nanbor Wang <nanbor@cs.wustl.edu>
 *  @author Ossama Othman <ossama@dre.vanderbilt.edu>
 */
// ===================================================================

#ifndef TAO_INTERCEPTOR_TEST_I_H
#define TAO_INTERCEPTOR_TEST_I_H

#include "testS.h"

class Visual_i : public POA_Test_Interceptors::Visual
{
public:
  Visual_i (CORBA::ORB_ptr orb);

  CORBA::Long calculate (CORBA::Long one, CORBA::Long two) override;

  void normal (CORBA::Long arg, CORBA::String_out msg)  override;

  Test_Interceptors::Visual::VarLenStruct * the_structure () override;

  void user () override;

  void system () override;

  void shutdown () override;

private:
  CORBA::ORB_var orb_;
};

#endif /* TAO_INTERCEPTOR_TEST_I_H */