#include "PngReader.h" #include "Image.h" #include int main() { const auto path = "/home/jmsgrogan/Downloads/test.png"; PngReader reader; reader.setPath(path); auto image = reader.read(); return 0; }