#ifndef RECOGNIZE_DATA_H #define RECOGNIZE_DATA_H #include #include namespace zsy { struct RecognizeData { bool isFront; std::string sn; std::string license; std::shared_ptr imageFile; RecognizeData( bool isFront, std::string sn, std::string license, std::shared_ptr imageFile ); }; } // zsy #endif //RECOGNIZE_DATA_H