summaryrefslogtreecommitdiff
path: root/examples/Smart_Pointers/Gadget_Part_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Smart_Pointers/Gadget_Part_Factory.cpp')
-rw-r--r--examples/Smart_Pointers/Gadget_Part_Factory.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/examples/Smart_Pointers/Gadget_Part_Factory.cpp b/examples/Smart_Pointers/Gadget_Part_Factory.cpp
deleted file mode 100644
index caf546fffce..00000000000
--- a/examples/Smart_Pointers/Gadget_Part_Factory.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-/* -*- C++ -*- */
-//=============================================================================
-/**
- * @file Gadget_Part_Factory.cpp
- *
- * $Id$
- *
- * @author Christopher Kohlhoff <chris@kohlhoff.com>
- */
-//=============================================================================
-
-#include "Gadget_Part_Factory.h"
-#include "Gadget_Part_Impl.h"
-
-Gadget_Part_var Gadget_Part_Factory::create_gadget_part (Gadget_ptr owner,
- const char* name,
- int size)
-{
- return Gadget_Part_var (new Gadget_Part_Impl (owner, name, size));
-}