MT_linear.hpp 248 B

123456789101112131415
  1. #ifndef MT_LINEAR__HPP
  2. #define MT_LINEAR__HPP
  3. class MT_linear
  4. {
  5. public:
  6. const float* data;
  7. unsigned int length;
  8. float* result;
  9. MT_linear(float* d = NULL, unsigned int l = 0, float* r = NULL) :data(d), length(l), result(r) {};
  10. };
  11. #endif