summaryrefslogtreecommitdiff
path: root/ACE/examples/Smart_Pointers/Gadget_Factory.cpp
blob: 5461f7190c6a1fc9d52b87e73406027a7d959cd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* -*- C++ -*- */
//=============================================================================
/**
 *  @file    Gadget_Factory.cpp
 *
 *  @author Christopher Kohlhoff <chris@kohlhoff.com>
 */
//=============================================================================

#include "Gadget_Factory.h"
#include "Gadget_Impl.h"

Gadget_var Gadget_Factory::create_gadget ()
{
  return Gadget_var (new Gadget_Impl);
}