Sophie

Sophie

distrib > Mandriva > 10.0-com > i586 > by-pkgid > 21280410b6ea906d791d7a12afae2579 > files > 978

libace5-doc-5.4-2mdk.i586.rpm

/* -*- C++ -*- */
// Magazine.h,v 1.5 1998/11/27 16:58:03 schmidt Exp

// ===========================================================
//
//
// = 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 */