summaryrefslogtreecommitdiff
path: root/TAO/tests/IORTable_Locator/simple_test_i.h
blob: f005511d55426ad3ab4079b26eb95a09b4e2e059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#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 ();

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

#endif /* HELLO_H */