Converting to using templates
Hi, i have the following design issue. In our app we use different
codecs to encode/decode packets of data
I have defined a base codec class as follows
class CCodec
{
public:
CCodec() {};
virtual ~CCodec(){};
virtual unsigned char Encode(short ibuf ) = 0;
virtual short Decode(unsigned char ibuf) = 0;
};
std::vector<unsigned char> m_SendBuffer; // defined in Voip class
bool Voip::SendData(signed short* buf, size_t size)
{
for(int i = 0; i != ENC_BUF_LEN; ++i)
{
SendBuffer[i] = m_codec->Encode(buf[i]); // m_Codec points to
concrete implementation
}
// then SendDataToNetwork(SendBuffer)
}
ENC_BUF_LEN = size of the SendBuffer vector
What i need to do is send a packet of data to the network in the
SendData function
which is given some data, i've got type short above but it could be
any type ie char, long etc
the Encode function takes a short and returns a char (as thats what
compression does) however
as we will support different codecs the signature of this function
could vary, it would probably always
return a char but its input parameter could vary like with Send data.
The above is hardcoded to use shorts but i need something generic ,
can this be done with templates
some how?