ouvinteCC.h
425 Bytes
/*
* File: ouvinteCC.h
* Author: felipe
*
* Created on 3 de Fevereiro de 2010, 19:44
*/
#ifndef _OUVINTECC_H
#define _OUVINTECC_H
#include <string>
#include <stdint.h>
using namespace std;
class OuvinteCC {
public:
OuvinteCC();
virtual ~OuvinteCC();
// inclusão do parâmetro "long int pts"
virtual void notificaCC(unsigned char * cc, int64_t pts) = 0;
private:
};
#endif /* _OUVINTECC_H */