#ifndef MT_CONTRAST__HPP #define MT_CONTRAST__HPP class MT_contrast { public: float* data; unsigned int length; float coeff; MT_contrast(float* d = NULL, unsigned int l = 0, float c = 0.0) :data(d), length(l), coeff(c) {}; }; #endif