summaryrefslogtreecommitdiff
path: root/ACE/examples/Smart_Pointers/Gadget_Factory.cpp
blob: 503e2edce681b7d560bbf420446e6af58b4088d6 (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 (void)
{
  return Gadget_var (new Gadget_Impl);
}