=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / Portable_Interceptors / Bug_2088 / Client_ORBInitializer.cpp
blobd866b6b4bc49885e5512b9d01f0f7eba9360bff0
1 // -*- C++ -*-
2 #include "Client_ORBInitializer.h"
4 Client_ORBInitializer::Client_ORBInitializer () :
5 pre_init_called (false),
6 post_init_called (false)
10 void
11 Client_ORBInitializer::pre_init (
12 PortableInterceptor::ORBInitInfo_ptr)
14 pre_init_called = true;
16 throw CORBA::NO_MEMORY ();
19 void
20 Client_ORBInitializer::post_init (
21 PortableInterceptor::ORBInitInfo_ptr)
23 post_init_called = true;
25 throw CORBA::NO_MEMORY ();