21 lines
407 B
C++
21 lines
407 B
C++
#ifndef RECOGNIZE_PROCESSOR_H
|
|
#define RECOGNIZE_PROCESSOR_H
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
#include "barrier/barrier.h"
|
|
|
|
|
|
namespace zsy
|
|
{
|
|
class RecognizeProcessor
|
|
{
|
|
public:
|
|
static void process(std::shared_ptr<RecognizeData> data);
|
|
|
|
static void addition_process(const std::string &orderNo,std::shared_ptr<RecognizeData> data);
|
|
};
|
|
} // zsy
|
|
|
|
#endif //RECOGNIZE_PROCESSOR_H
|