summaryrefslogtreecommitdiff
path: root/modules/lang/c++/c_language.hpp
diff options
context:
space:
mode:
authorClaudius 'keldu' Holeksa <mail@keldu.de>2024-10-16 12:52:32 +0200
committerClaudius 'keldu' Holeksa <mail@keldu.de>2024-10-16 12:52:40 +0200
commit09e164c02120f05c9364d5d9a8faad2ec0026425 (patch)
tree8125a545ab76708d2e99c2cbf4aa7d1231cdbf17 /modules/lang/c++/c_language.hpp
parent00689114da12f6ecdabcf47f6fe94ee80b7c8d15 (diff)
Dangling changes
Diffstat (limited to 'modules/lang/c++/c_language.hpp')
-rw-r--r--modules/lang/c++/c_language.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/lang/c++/c_language.hpp b/modules/lang/c++/c_language.hpp
index c4b1d48..db3c97e 100644
--- a/modules/lang/c++/c_language.hpp
+++ b/modules/lang/c++/c_language.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include "c_transfer.hpp"
#include "c_helper.hpp"
+#include "c_transfer.hpp"
#include "c_rpc.hpp"
namespace saw {
@@ -12,6 +12,11 @@ public:
std::string prefix;
};
public:
+ error_or<void> generate_transfer(const config& cfg){
+
+ return make_error<err::not_implemented>();
+ }
+
error_or<void> generate_rpc(const config& cfg){
return make_error<err::not_implemented>();
}