10 lines
201 B
C++
10 lines
201 B
C++
#include <iostream>
|
|
#include <array>
|
|
|
|
class UtilTool
|
|
{
|
|
public:
|
|
constexpr static std::array<std::string, 2> ImageType{"jpg","png"};
|
|
static bool CheckFileIsImage(const std::string& filename);
|
|
};
|