#ifndef _PPMPARSER_H_ #define _PPMPARSER_H_ #include class PPM { private: void init(std::string fileName); RGB** matrix; public: PPM(); PPM(char* fileName); void readIn(char* fileName); RGB getAt(int x, int y); }; #endif