You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
482 B
C++
31 lines
482 B
C++
//
|
|
// 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)
|
|
|
|
|