home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1998 / MacHack 1998.toast / The Hacks! / Interim Executive Decision / Outline Table Demo / sources / COutlineTable.h < prev    next >
Encoding:
Text File  |  1998-06-21  |  815 b   |  39 lines  |  [TEXT/CWIE]

  1. //============================================================================
  2. // COutlineTable.h        ©1997 Metrowerks Inc. All rights reserved
  3. // Original author: John C. Daub
  4. //============================================================================
  5. //    Subclass and concrete instantiation of LOutlineTable
  6.  
  7.  
  8. #pragma once
  9.  
  10. #include <LOutlineTable.h>
  11. #include <LCommander.h>
  12.  
  13. class COutlineTable : public LOutlineTable,
  14.                         public LCommander {
  15.  
  16. public:
  17.  
  18.             enum { class_ID = 'Cout' };
  19.  
  20.  
  21.                                 COutlineTable( LStream *inStream );
  22.         virtual                    ~COutlineTable();
  23.  
  24.  
  25.  
  26. protected:
  27.  
  28.         virtual    void            FinishCreateSelf();
  29.  
  30.  
  31. private:
  32.  
  33.                 // defensive programming
  34.                 
  35.                                 COutlineTable();
  36.                                 COutlineTable( const COutlineTable &inOriginal );
  37.             COutlineTable&        operator=( const COutlineTable &inOriginal );
  38.  
  39. };