NASFAQ/nasfaq/connections/parser/parser.h

17 lines
245 B
C
Raw Normal View History

#ifndef _PARSER_H_
#define _PARSER_H_
2022-02-18 09:24:24 +00:00
#include <iostream>
#include <string>
#include <stdlib.h>
#include <nlohmann/json.hpp>
#include "../common/common.h"
#include "../safe_queue/safe_queue.h"
MSG_TYPE msg_type_detect(std::string);
2022-02-18 09:24:24 +00:00
#endif