/* -*- C++ -*- */ //============================================================================= /** * @file Gadget_Factory.cpp * * $Id: Gadget_Factory.cpp 80826 2008-03-04 14:51:23Z wotte $ * * @author Christopher Kohlhoff */ //============================================================================= #include "Gadget_Factory.h" #include "Gadget_Impl.h" Gadget_var Gadget_Factory::create_gadget (void) { return Gadget_var (new Gadget_Impl); }