Tfe

Ongi etorri tfe-ren webgunera...

Old stuff/ecole_etude_fac_de_pau/nico/projet/outputstream.h

(Deskargatu)
#ifndef _output
#define _output 1
#include <string>
#include <ostream>
#include "deflater.h"



class OutputStream
{
private:
    std::ostream&  flux; 
    Deflater instance;	
    std::vector<char> entree;
public:
    OutputStream(std::ostream&);
    OutputStream& operator<<(const std::string&); // Ajout manuel d un string
};






#endif