summaryrefslogtreecommitdiff
path: root/examples/Smart_Pointers/Gadget_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Smart_Pointers/Gadget_Factory.cpp')
-rw-r--r--examples/Smart_Pointers/Gadget_Factory.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/Smart_Pointers/Gadget_Factory.cpp b/examples/Smart_Pointers/Gadget_Factory.cpp
deleted file mode 100644
index 054237169f2..00000000000
--- a/examples/Smart_Pointers/Gadget_Factory.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-/* -*- C++ -*- */
-//=============================================================================
-/**
- * @file Gadget_Factory.cpp
- *
- * $Id$
- *
- * @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);
-}