aboutsummaryrefslogtreecommitdiffstats
path: root/include/RelationshipHandler.hpp
blob: 5b609f43f6964dda2e34a330e2fa32fae2862c8c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}