2 //=============================================================================
4 * @file Gadget_Part_Factory.cpp
6 * @author Christopher Kohlhoff <chris@kohlhoff.com>
8 //=============================================================================
10 #include "Gadget_Part_Factory.h"
11 #include "Gadget_Part_Impl.h"
13 Gadget_Part_var
Gadget_Part_Factory::create_gadget_part (Gadget_ptr owner
,
17 return Gadget_Part_var (new Gadget_Part_Impl (owner
, name
, size
));