home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Sources / Streams / PedDataSource.cc < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  269 b   |  25 lines

  1. /*    ================
  2.  *    PedDataSource.cc
  3.  *    ================
  4.  */
  5.  
  6. #include <Files.h>
  7.  
  8. #include <string.h>
  9.  
  10. #include "PedDataSource.hh"
  11.  
  12. PedDataSource::PedDataSource()
  13. {
  14. }
  15.  
  16. PedDataSource::~PedDataSource()
  17. {
  18. }
  19.  
  20. PedBuffer *
  21. PedDataSource::GetNextBuffer()
  22. {
  23.     return NULL;
  24. }
  25.