home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedDataSource.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  298 b   |  22 lines

  1. /*    ================
  2.  *    PedDataSource.hh
  3.  *    ================
  4.  *    
  5.  *    Implemented by PedDataSource.cc
  6.  */
  7.  
  8. #pragma once
  9.  
  10.  
  11. #include "PedObject.hh"
  12.  
  13. class PedBuffer;
  14.  
  15. class PedDataSource : public PedObject {
  16. public:
  17.     PedDataSource();
  18.     virtual ~PedDataSource();
  19.     
  20.     virtual PedBuffer *GetNextBuffer();
  21. };
  22.