Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / QtResource / QtResource_Loader.cpp
blob8d542cc3f56ca575a4be0ec97efe51de2334e155
1 #include "tao/QtResource/QtResource_Loader.h"
2 #include "tao/ORB_Core.h"
3 #include "tao/QtResource/QtResource_Factory.h"
5 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
7 namespace TAO
9 QtResource_Loader::QtResource_Loader (QApplication *qapp)
11 QtResource_Factory *tmp = 0;
13 ACE_NEW (tmp,
14 QtResource_Factory (qapp));
16 TAO_ORB_Core::set_gui_resource_factory (tmp);
19 QtResource_Loader::~QtResource_Loader ()
24 TAO_END_VERSIONED_NAMESPACE_DECL