Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1.  
  2. #ifndef __archiver_h__
  3. #define __archiver_h__
  4.  
  5. #include "yacasbase.h"
  6. #include "compressedfiles.h"
  7.  
  8. class CCompressedArchive : public YacasBase
  9. {
  10. public:
  11.     CCompressedArchive(unsigned char * aBuffer, LispInt aFullSize, LispInt aCompressed);
  12.     CompressedFiles iFiles;
  13. };
  14.  
  15. #endif // __archiver_h__
  16.  
  17.