aboutsummaryrefslogtreecommitdiffstats
path: root/include/RelationshipHandler.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/RelationshipHandler.hpp')
-rw-r--r--include/RelationshipHandler.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/RelationshipHandler.hpp b/include/RelationshipHandler.hpp
new file mode 100644
index 0000000..5b609f4
--- /dev/null
+++ b/include/RelationshipHandler.hpp
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "Handler.hpp"
+
+namespace Handler {
+ namespace RelationShipHandler {
+ std::vector<int> buildCalArr(std::vector<std::string> nameV);
+
+ int calculate(std::vector<std::string> names);
+
+ bool isAlphaNum(const std::string &str);
+
+ std::string rsStart(std::vector<std::string> const &names);
+ }
+
+ json relationShipHandler(std::string const &arguments, std::string const &session, void *payload);
+}