summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_3499_Regression/DLL_TAO_Service.h
blob: f2d26f5d3db78df24bfefa9ef6c902f3a46b5ec3 (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
#ifndef _ACE_DLL_TAO_SERVICE_H_
#define _ACE_DLL_TAO_SERVICE_H_

#include "DLL_TAO_Service_export.h"
#include "DLL_Service.h"
#include "tao/PortableServer/PortableServer.h"

class ACE_DLL_TAO_Service : public ACE_DLL_Service
{
public:
  ACE_DLL_TAO_Service (void);

  virtual ~ACE_DLL_TAO_Service (void);

  virtual int init (int argc, ACE_TCHAR * argv []);

  virtual int fini ();

private:
  CORBA::ORB_var orb_;

  PortableServer::POA_var root_poa_;
};

ACE_DLL_SERVICE_DECL (ACE_DLL_TAO_SERVICE_Export, _make_ACE_DLL_TAO_Service);

#endif  // !defined _ACE_DLL_TAO_SERVICE_H_