25 lines
475 B
C++
25 lines
475 B
C++
#ifndef RECOGNIZE_DATA_H
|
|
#define RECOGNIZE_DATA_H
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace zsy
|
|
{
|
|
struct RecognizeData
|
|
{
|
|
bool isFront;
|
|
std::string sn;
|
|
std::string license;
|
|
std::shared_ptr<std::istream> imageFile;
|
|
|
|
RecognizeData(
|
|
bool isFront,
|
|
std::string sn,
|
|
std::string license,
|
|
std::shared_ptr<std::istream> imageFile
|
|
);
|
|
};
|
|
} // zsy
|
|
|
|
#endif //RECOGNIZE_DATA_H
|