diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/DLL/Today.h | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/DLL/Today.h')
-rw-r--r-- | examples/DLL/Today.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/examples/DLL/Today.h b/examples/DLL/Today.h deleted file mode 100644 index 6b0fdaa2c28..00000000000 --- a/examples/DLL/Today.h +++ /dev/null @@ -1,52 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -// =========================================================== -// -// = LIBRARY -// ACE_wrappers/examples/DLL -// -// = FILENAME -// Today.h -// -// = DESCRIPTION -// This class denotes the Today magazine which is derived from -// Magazine. -// -// = AUTHOR -// Kirthika Parameswaran <kirthika@cs.wustl.edu> -// -// =========================================================== - -#ifndef TODAY_H -#define TODAY_H - -#include "ace/OS.h" -#include "Magazine.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -# pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -class Today : public Magazine -{ - // = TITLE - // This is an derived class of Magazine. - // - // = DESCRIPTION - // Polymoriphism is exploited and an object pointer of Magazine - // is bound to the Today object at runtime. -public: - - // The virtual abstract class method which returns the title of the - // magazine. - void title (void); - - // Overload the new/delete opertors so the object will be - // created/deleted using the memory allocator associated with the - // DLL/SO. - void *operator new (size_t bytes); - void operator delete (void *ptr); -}; - -#endif /* TODAY_H */ |