diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2006-03-05 17:14:45 +0000 |
commit | 58033491c6d0bac82315c1fdb1ec9b39be58093f (patch) | |
tree | c69c3aa67ec66758066e959bd0d533ea336ec236 /examples/DLL/Magazine.h | |
parent | 2efc882384a34f61311a24fc641d1b5fd5776356 (diff) | |
download | ATCD-TAO-1_5.tar.gz |
This commit was manufactured by cvs2svn to create tag 'TAO-1_5'.TAO-1_5
Diffstat (limited to 'examples/DLL/Magazine.h')
-rw-r--r-- | examples/DLL/Magazine.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/examples/DLL/Magazine.h b/examples/DLL/Magazine.h deleted file mode 100644 index 6555974494f..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 virtual destructor. - - virtual void title (void) = 0; - // This method gives the title of the magazine. -}; - -#endif /* MAGAZINE_H */ |