#ifndef UTILS_H #define UTILS_H #include class QImage; class Mesh; class Utils { public: static std::string fileToString(const std::string &filename); static Mesh* loadOBJ(const std::string &filename); class Image { private: QImage* img; public: Image(std::string filename); ~Image(); int depth(); int width(); int height(); void* pixels(); }; }; #endif // UTILS_H