Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / QtTests / test_i.cpp
blobf321fe0e5faddceb6a169ef49f599306be7b7245
1 #include "test_i.h"
3 LCD_Display_imp::LCD_Display_imp (CORBA::ORB_ptr orb)
5 : orb_ (CORBA::ORB::_duplicate (orb))
9 void
10 LCD_Display_imp::shutdown ()
12 ACE_DEBUG ((LM_DEBUG,
13 "The ORB has been shutdown, Close the windows to exit\n"));
14 this->orb_->shutdown (false);
15 this->orb_->destroy ();
18 void
19 LCD_Display_imp::send_val (CORBA::Long val)
21 ACE_DEBUG ((LM_DEBUG,
22 "The value from server is <%d>\n", val));
23 emit set_value (val);