/****************************************************************

 The idea of this is that you have something that can load a file
  of any type into a generic format buffer. This version is a 
  direct load used for text files.

changelog:

aug 02 2002  added save method. dan

****************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include "accumulator2.h"

#ifndef _FILEFILTER1

#define _FILEFILTER1

class FileFilter1 {

 public:

   FileFilter1( void ); // this should have a dest buffer and filename
  ~FileFilter1();
  
   int LoadFile( Accumulator * buffer, char * fileName);
   CESError_t SaveFile( Accumulator * buffer, char * fileName); 
 
};

#endif
