starting work on image module

This commit is contained in:
2024-08-31 22:18:54 +03:00
parent 2a726a96b7
commit f9b0b75062
6 changed files with 136 additions and 37 deletions

15
image/checkimage.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef CHECKIMAGE_H
#define CHECKIMAGE_H
#include <string>
class CheckImage {
std::string path;
public:
CheckImage(std::string path);
std::string parse_text();
};
#endif // CHECKIMAGE_H