Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Native_Exceptions / test_i.cpp
blobd776d22610b554c68a0d4168d328c459540cdef4
1 #include "test_i.h"
3 #if !defined(__ACE_INLINE__)
4 #include "test_i.inl"
5 #endif /* __ACE_INLINE__ */
7 CORBA::Long
8 Simple_Server_i::test_method (CORBA::Long x)
10 return x;
13 CORBA::Long
14 Simple_Server_i::test_raise (CORBA::Long)
16 throw Simple_Server::Failure ();
19 void
20 Simple_Server_i::shutdown ()
22 this->orb_->shutdown ();