working commit

This commit is contained in:
Олег Бородин
2026-05-05 11:37:10 +02:00
parent bd4df1e3da
commit eda9b8986b
62 changed files with 7546 additions and 476 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef NETHANDLER_HPP
#define NETHANDLER_HPP
#include <expected>
#include <string>
#include <vector>
#include <span>
#include <iostream>
#include <sstream>
#include <netclient.hpp>
class AbstractRPCHandler {
public:
AbstractRPCHandler(void);
virtual std::expected<void, std::string> Handle(std::string& req, std::string& res);
virtual ~AbstractRPCHandler(void);
AbstractRPCHandler(const AbstractRPCHandler&) = delete;
AbstractRPCHandler& operator=(const AbstractRPCHandler&) = delete;
};
#endif