2 //=============================================================================
4 * @file Widget_Factory.cpp
6 * @author Christopher Kohlhoff <chris@kohlhoff.com>
8 //=============================================================================
10 #include "Widget_Factory.h"
11 #include "Widget_Impl.h"
13 Widget
*Widget_Factory::create_widget ()
15 return new Widget_Impl
;