#pragma once #include "c_transfer.hpp" #include "c_helper.hpp" #include "c_rpc.hpp" namespace saw { template class language { public: struct config { std::string prefix; }; public: error_or generate_rpc(const config& cfg){ return make_error(); } }; }