40 lines
861 B
C
40 lines
861 B
C
|
#ifndef Caster_h
|
||
|
#define Caster_h
|
||
|
|
||
|
#ifndef MESSAGE
|
||
|
#define MESSAGE cout << "file " << __FILE__ << " line " << __LINE__ << endl;
|
||
|
#endif
|
||
|
#ifndef ERR_MESSAGE
|
||
|
#define ERR_MESSAGE cout << "Error in file " << __FILE__ << " at line " << __LINE__ << " Exiting" << endl; exit(1);
|
||
|
#endif
|
||
|
#include <stdint.h>
|
||
|
#include "DataCasterT.h"
|
||
|
|
||
|
using namespace std;
|
||
|
template<typename F, typename T>
|
||
|
class Caster : public DataCasterT<F,T>
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
Caster()
|
||
|
{
|
||
|
this->DataSizeIn = sizeof(F);
|
||
|
this->DataSizeOut = sizeof(T);
|
||
|
}
|
||
|
|
||
|
virtual ~Caster()
|
||
|
{}
|
||
|
void
|
||
|
convert(char * in, char * out, int numEl)
|
||
|
{
|
||
|
for (int i = 0, j = 0, k = 0; i < numEl; ++i, j += this->DataSizeIn, k +=
|
||
|
this->DataSizeOut)
|
||
|
{
|
||
|
F * tmp = (F *) &in[j];
|
||
|
(*(T *) &out[k]) = (T) (*tmp);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
};
|
||
|
#endif //Caster_h
|