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