#include "PPM.h" #include #include #include void PPM::init(std::string fileName) { return; } PPM::PPM() { } PPM::PPM(char* fileName) { } void PPM::readIn(char* fileName) { std::fstream file; file.open(fileName, std::fstream::in); //First we read in the header //while (file.getline( file.close(); } RGB PPM::getAt(int x, int y) { RGB rgb; return rgb; }