25 lines
417 B
C++
25 lines
417 B
C++
//
|
|
// Created by dongl on 23-4-23.
|
|
//
|
|
|
|
#ifndef IM2_MAPPING_H1
|
|
#define IM2_MAPPING_H1
|
|
|
|
#include "agreement.h"
|
|
#include "controller/works.h"
|
|
|
|
|
|
class mapping {
|
|
private:
|
|
public:
|
|
mapping();
|
|
public:
|
|
static void run(mp::MP_TYPE mpTYpe, std::shared_ptr<agreement_request>& request, std::shared_ptr<agreement_response>& response);
|
|
private:
|
|
static std::map<mp::MP_TYPE, handler*> map;
|
|
};
|
|
|
|
|
|
|
|
#endif //IM2_MAPPING_H1
|