summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3790_Regression/simple_test_i.h
blob: 0a5f17eeeda2298ddc15e6a7c625a7694bcc1fa8 (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
//
// $Id$
//

#ifndef HELLO_H
#define HELLO_H

#include "simple_testS.h"

class Simple_Test_i
  : public virtual POA_simple::SimpleTest_T
{
public:
  /// Constructor
  Simple_Test_i (CORBA::ORB_ptr orb);

  // = The skeleton methods
  virtual void shutdown (void);

private:
  /// Use an ORB reference to convert strings to objects and shutdown
  /// the application.
  CORBA::ORB_var orb_;
};

#endif /* HELLO_H */