// // G A M E.O.N.E - LOW LEVEL LIB V1.0 // Copyright (C) 2001 LEVEL ONE ENTERTAINMENT, // Licensed under the terms of LGPL. //:--------------------------------------------------------------------------- //:Description // // Memory coder base class // #if !defined(_CODE_H) #define _CODE_H class CCode { public: CCode(); virtual ~CCode(); virtual void Decode( char * buf, int cnt ); virtual void Encode( char * buf, int cnt ); }; #endif // !defined(_CODE_H)