Merge pull request #2216 from jwillemsen/jwi-cxxversionchecks
[ACE_TAO.git] / ACE / examples / Smart_Pointers / Widget_Factory.cpp
blob52921fa0d1f052cd82dd13203f96a1dddfb9148b
1 /* -*- C++ -*- */
2 //=============================================================================
3 /**
4 * @file Widget_Factory.cpp
6 * @author Christopher Kohlhoff <chris@kohlhoff.com>
7 */
8 //=============================================================================
10 #include "Widget_Factory.h"
11 #include "Widget_Impl.h"
13 Widget *Widget_Factory::create_widget ()
15 return new Widget_Impl;