summaryrefslogtreecommitdiff
path: root/TAO/interop-tests/CdrOutArg/orbix/Server_ORBInitializer.h
blob: 219ebf257ebcc6871e60cf077af8c77fbc8b172d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// -*- C++ -*-

#ifndef TAO_SERVER_ORB_INITIALIZER_H
#define TAO_SERVER_ORB_INITIALIZER_H

#include <omg/PortableInterceptor.hh>
#include <orbix/corba.hh>

/// Server ORB initializer.
class Server_ORBInitializer :
  public virtual PortableInterceptor::ORBInitializer,
  public virtual ::CORBA::LocalObject
{
public:
  /// Constructor
  Server_ORBInitializer ();

  virtual void pre_init (PortableInterceptor::ORBInitInfo_ptr info);

  virtual void post_init (PortableInterceptor::ORBInitInfo_ptr info);
};

#endif /* TAO_SERVER_ORB_INITIALIZER_H */