summaryrefslogtreecommitdiff
path: root/examples/DLL/Magazine.h
blob: f1df7f506dda19a0dc6de331d0e4d1e748c81414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// $Id$

#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:

  // No-op virtual destructor.
  virtual ~Magazine (void) {};
  
  // This method gives the title of the magazine.
  virtual void title (void) = 0;
};

#endif /* MAGAZINE_H */