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

#include "Widget_Factory.h"
#include "Widget_Impl.h"

Widget *Widget_Factory::create_widget (void)
{
  return new Widget_Impl;
}