summaryrefslogtreecommitdiff
path: root/TAO/tao/QtResource_Loader.cpp
blob: 54ea6f6283fd9b34dc5dee07697bf97d781f6d18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//$Id$
#include "QtResource_Loader.h"
#include "ORB_Core.h"
#include "QtResource_Factory.h"

ACE_RCSID(tao, QtResource_Loader, "$Id$");

namespace TAO {

  QtResource_Loader::QtResource_Loader (QApplication *qapp)
  {
    TAO_ORB_Core::set_gui_resource_factory( new QtResource_Factory (qapp) );
  }

  QtResource_Loader::~QtResource_Loader ()
  {
  }
}