ouvinteTradutor.h
504 Bytes
/*
* File: ouvinteTradutor.h
* Author: derzu
*
* Created on 2 de Fevereiro de 2010, 15:48
*/
#ifndef _OUVINTETRADUTOR_H
#define _OUVINTETRADUTOR_H
#include <string>
#include <vector>
namespace Tradutor {
class OuvinteTradutor {
public:
OuvinteTradutor();
virtual ~OuvinteTradutor();
// Metodo que vai ser chamado quando chegar a traducao
virtual void codifica(std::vector<std::string> * glosas)=0;
};
}
#endif /* _OUVINTETRADUTOR_H */