summaryrefslogtreecommitdiff
path: root/examples/DLL/Magazine.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/DLL/Magazine.h')
-rw-r--r--examples/DLL/Magazine.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/examples/DLL/Magazine.h b/examples/DLL/Magazine.h
deleted file mode 100644
index 4810fb73baa..00000000000
--- a/examples/DLL/Magazine.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// ===========================================================
-//
-//
-// = LIBRARY
-// ACE_wrappers/examples/DLL
-//
-// = FILENAME
-// Magazine.h
-//
-// = DESCRIPTION
-// Abstract class whose methods are implemented by the derived
-// classes.
-//
-// = AUTHOR
-// Kirthika Parameswaran <kirthika@cs.wustl.edu>
-//
-// ===========================================================
-
-#ifndef MAGAZINE_H
-#define MAGAZINE_H
-
-class Magazine
-{
- // = TITLE
- // This is an abstract class used in the DLL example.
- //
- // = DESCRIPTION
- // This class simply is an inetrface which the derived classes
- // will exploit.
-public:
-
- virtual ~Magazine (void) {};
- // No-op vitrual destructor.
-
- virtual void title (void) = 0;
- // This method gives the title of the magazine.
-};
-
-#endif /* MAGAZINE_H */