summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/ImplRepo_Service/Locator_Loader.h
blob: d5b154f929c4746a294f99311de532fb13cbb011 (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
39
40
41
42
43
44
45
46
// -*- C++ -*-
#ifndef TAO_IMR_LOCATOR_LOADER_H
#define TAO_IMR_LOCATOR_LOADER_H

#include "ImR_Locator_i.h"

#include "tao/Object_Loader.h"

#include "ace/Auto_Ptr.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

class ImR_Locator_ORB_Runner;

class Locator_Export ImR_Locator_Loader : public TAO_Object_Loader
{
public:
  ImR_Locator_Loader();

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

  virtual int fini (void);

  virtual CORBA::Object_ptr create_object (CORBA::ORB_ptr orb,
                                           int argc,
                                           ACE_TCHAR *argv[]);

 // Unlike other service objects, we have our own orb.
 int run(void);

private:
  ImR_Locator_i service_;
  Options opts_;
  ACE_Auto_Ptr<ImR_Locator_ORB_Runner> runner_;
private:
  ImR_Locator_Loader (const ImR_Locator_Loader &) = delete;
  ImR_Locator_Loader &operator = (const ImR_Locator_Loader &) = delete;
  ImR_Locator_Loader (ImR_Locator_Loader &&) = delete;
  ImR_Locator_Loader &operator = (ImR_Locator_Loader &&) = delete;
};

ACE_FACTORY_DECLARE (Locator, ImR_Locator_Loader)

#endif