NASFAQ/nasfaq/connections/api/api.h

23 lines
423 B
C
Raw Normal View History

2022-05-07 14:49:43 +00:00
#ifndef _API_H_
#define _API_H_
2022-02-17 15:15:31 +00:00
2022-02-18 09:24:24 +00:00
#include <iostream>
#include <string>
#include <stdlib.h>
#include <websocketpp/config/asio_client.hpp>
#include <websocketpp/client.hpp>
#include <websocketpp/common/thread.hpp>
#include <websocketpp/common/memory.hpp>
#include <nlohmann/json.hpp>
#include "../parser/parser.h"
#include "../common/common.h"
#include "../safe_queue/safe_queue.h"
2022-05-07 14:49:43 +00:00
#include "../my_ssl/my_ssl.h"
2022-02-17 15:15:31 +00:00
#endif