// ================================= // // Image processor class #ifndef __iproc__ #define __iproc__ 1 #include #include "Image.h" class ImageProcessor { public: int peakPosition( std::vector images ); void print( std::vector images ); }; #endif