Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/nico/bckup/inflater.h

(Deskargatu)
#ifndef _lzw_inflater
#define _lzw_inflater

#include <string>
#include <map>
#include <vector>

class Inflater{
 private:
  std::vector<std::pair<unsigned int, char> > dico;
  std::vector<unsigned int> memoire;
  std::string sortie;
 
  int add(std::string);

  int seek(std::string);

 public:
  Inflater();
  int inflate();
  void setinput(std::vector <unsigned int>);
 
};



#endif