diff options
Diffstat (limited to 'examples/DLL/Today.cpp')
-rw-r--r-- | examples/DLL/Today.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/DLL/Today.cpp b/examples/DLL/Today.cpp new file mode 100644 index 00000000000..8c5f66ae4d6 --- /dev/null +++ b/examples/DLL/Today.cpp @@ -0,0 +1,26 @@ +// $Id$ + +#include "Today.h" + +// Implementation of the abstract class method which describes the +// magazine. +void +Today::title (void) +{ + ACE_DEBUG ((LM_DEBUG, + "Today: Information Technology Special Nov98\n")); +} + +// Returns the pointer to the Today class. + +extern "C" + +Magazine * +create_magazine (void) +{ + Magazine *mag; + ACE_NEW_RETURN (mag, + Today, + 0); + return mag; +} |