summaryrefslogtreecommitdiff
path: root/TAO/tao/XtResource_Loader.cpp
blob: 5fdc64af074a98461e3a0dbb5d6c8924aa0029d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//$Id$
#include "tao/XtResource_Loader.h"
#include "tao/ORB_Core.h"
#include "tao/XtResource_Factory.h"

ACE_RCSID( TAO_XtResource,
           XtResource_Loader,
           "$Id$");

namespace TAO
{

  XtResource_Loader::XtResource_Loader (XtAppContext context)
  {
    XtResource_Factory *tmp = 0;

    ACE_NEW (tmp,
             XtResource_Factory (context));

    TAO_ORB_Core::set_gui_resource_factory( tmp );
  }

  XtResource_Loader::~XtResource_Loader ()
  {
  }
}