#ifndef LATAN_SAMPLE_HPP_ #define LATAN_SAMPLE_HPP_ #include #include LATAN_BEGIN_CPPDECL const int Central = -1; typedef Eigen::Array DSampleBase; class DSample: public DSampleBase { public: // Constructors/destructor DSample(void); DSample(const unsigned int nSample, const unsigned int nRow, const unsigned int nCol); ~DSample(void); // Operators DMat& operator()(const int s); }; LATAN_END_CPPDECL #endif