2 //=============================================================================
4 * @file Widget_Part_Factory.cpp
6 * @author Christopher Kohlhoff <chris@kohlhoff.com>
8 //=============================================================================
10 #include "Widget_Part_Factory.h"
11 #include "Widget_Part_Impl.h"
13 Widget_Part
*Widget_Part_Factory::create_widget_part (Widget
*owner
,
17 return new Widget_Part_Impl (owner
, name
, size
);