Merge branch 'master' into jwi-bcc64xsingletonwarning
[ACE_TAO.git] / ACE / examples / Smart_Pointers / Widget_Part_Factory.cpp
blobf6fd006c5bd713289f8445cd35b1c774c84a7be7
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
4 * @file Widget_Part_Factory.cpp
6 * @author Christopher Kohlhoff <chris@kohlhoff.com>
7 */
8 //=============================================================================
10 #include "Widget_Part_Factory.h"
11 #include "Widget_Part_Impl.h"
13 Widget_Part *Widget_Part_Factory::create_widget_part (Widget *owner,
14 const char* name,
15 int size)
17 return new Widget_Part_Impl (owner, name, size);