ouvinteDemux.h
362 Bytes
/*
* File: ouvintedemux.h
* Author: felipel
*
* Created on 12 de Julho de 2010, 15:03
*/
#ifndef OUVINTEDEMUX_H
#define OUVINTEDEMUX_H
#include <string>
using namespace std;
class OuvinteDemux {
public:
OuvinteDemux();
virtual ~OuvinteDemux();
virtual void chegou(unsigned char * section) = 0;
private:
};
#endif /* OUVINTEDEMUX_H */