summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/MIOP.h
blob: 755901ffff37a9eda0827d7d8df49da4dadef560 (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file     MIOP.h
 *
 *  $Id$
 *
 *  @author Bala Natarajan
 */
//=============================================================================
#ifndef TAO_MIOP_H
#define TAO_MIOP_H
#include /**/ "ace/pre.h"

#include "portablegroup_export.h"

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

namespace TAO
{

  class TAO_PortableGroup_Export MIOP_Loader
  {
    public:
    /// Used to force the insertion of UIPMC_Factory in the service
    /// configurator.
    static int Initializer (void);
  };

  static int
  Requires_MIOP_Initializer = MIOP_Loader::Initializer ();

}

#include /**/ "ace/post.h"
#endif /*TAO_MIOP_H*/