#ifndef MT_LINEAR__HPP #define MT_LINEAR__HPP class MT_linear { public: const float* data; unsigned int length; float* result; MT_linear(float* d = NULL, unsigned int l = 0, float* r = NULL) :data(d), length(l), result(r) {}; }; #endif