1 #ifndef Bug_3647_Regression_Backend_Impl_h
2 #define Bug_3647_Regression_Backend_Impl_h
6 namespace Bug_3647_Regression
11 * Implement the Bug_3647_Regression::Backend interface
13 class Backend_Impl
: public POA_Bug_3647_Regression::Backend
16 Backend_Impl(CORBA::ORB_ptr orb
, bool verbose
);
17 virtual ~Backend_Impl() = default;
19 virtual void startup_test();
20 virtual void ping(Bug_3647_Regression::Payload
const & the_payload
);
21 virtual void freeze(CORBA::ULong seconds
);
23 virtual void shutdown();
26 /// Keep a reference to the ORB so we can shutdown the application.
29 /// Use this flag to decide if the program should produce any output.
32 } // namespace Bug_3647_Regression
34 #endif // Bug_3647_Regression_Backend_h