summaryrefslogtreecommitdiff
path: root/examples/Smart_Pointers/Widget_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Smart_Pointers/Widget_Factory.cpp')
-rw-r--r--examples/Smart_Pointers/Widget_Factory.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/Smart_Pointers/Widget_Factory.cpp b/examples/Smart_Pointers/Widget_Factory.cpp
deleted file mode 100644
index 18fec0c23f4..00000000000
--- a/examples/Smart_Pointers/Widget_Factory.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/* -*- C++ -*- */
-//=============================================================================
-/**
- * @file Widget_Factory.cpp
- *
- * $Id$
- *
- * @author Christopher Kohlhoff <chris@kohlhoff.com>
- */
-//=============================================================================
-
-#include "Widget_Factory.h"
-#include "Widget_Impl.h"
-
-Widget *Widget_Factory::create_widget (void)
-{
- return new Widget_Impl;
-}