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