Old stuff/ecole_etude_fac_de_pau/nico/bckup/inputstream.h
(Deskargatu)#ifndef _input
#define _input 1
#include <ostream>
#include <string>
#include "inflater.h"
class InputStream
{
private:
std::ostream& sortie ;
Inflater comp; // objet Inflater
std::vector<unsigned int> buffer;
public:
InputStream(std::ostream&);
InputStream& operator<<(std::vector<unsigned int>&);
};
#endif