/* -*- C++ -*- */ //============================================================================= /** * @file Widget_Factory.cpp * * @author Christopher Kohlhoff */ //============================================================================= #include "Widget_Factory.h" #include "Widget_Impl.h" Widget *Widget_Factory::create_widget (void) { return new Widget_Impl; }