diff options
Diffstat (limited to 'ACE/examples/Smart_Pointers/Gadget.cpp')
-rw-r--r-- | ACE/examples/Smart_Pointers/Gadget.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ACE/examples/Smart_Pointers/Gadget.cpp b/ACE/examples/Smart_Pointers/Gadget.cpp new file mode 100644 index 00000000000..180fe0107cc --- /dev/null +++ b/ACE/examples/Smart_Pointers/Gadget.cpp @@ -0,0 +1,16 @@ +/* -*- C++ -*- */ +//============================================================================= +/** + * @file Gadget.cpp + * + * $Id$ + * + * @author Christopher Kohlhoff <chris@kohlhoff.com> + */ +//============================================================================= + +#include "Gadget.h" + +Gadget::~Gadget (void) +{ +} |