mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 08:32:13 +11:00
🐎 noexcept
This commit is contained in:
parent
b90552d0d4
commit
5c1a9264d3
1 changed files with 10 additions and 10 deletions
|
|
@ -12,23 +12,23 @@ class api : public HttpController<api, false>
|
||||||
Bank &bank;
|
Bank &bank;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
api(Bank &b);
|
api(Bank &b) noexcept;
|
||||||
#if API_VERSION >= 1
|
#if API_VERSION >= 1
|
||||||
void GetBal(req_args, const std::string &name) const;
|
void GetBal(req_args, const std::string &name) const noexcept;
|
||||||
void GetLog(req_args);
|
void GetLog(req_args) const noexcept;
|
||||||
void SendFunds(req_args) const;
|
void SendFunds(req_args) const;
|
||||||
void VerifyPassword(req_args) const;
|
void VerifyPassword(req_args) const noexcept;
|
||||||
|
|
||||||
void ChangePassword(req_args) const;
|
void ChangePassword(req_args) const;
|
||||||
void AdminChangePassword(req_args) const;
|
void AdminChangePassword(req_args) const;
|
||||||
void SetBal(req_args) const;
|
void SetBal(req_args) const;
|
||||||
|
|
||||||
void Help(req_args) const;
|
void Help(req_args) const noexcept;
|
||||||
void Ping(req_args) const;
|
void Ping(req_args) const noexcept;
|
||||||
void Close(req_args) const;
|
void Close(req_args) const noexcept;
|
||||||
void Contains(req_args, const std::string &name) const;
|
void Contains(req_args, const std::string &name) const noexcept;
|
||||||
void AdminVerifyAccount(req_args);
|
void AdminVerifyAccount(req_args) noexcept;
|
||||||
void ApiVersion(req_args) const;
|
void ApiVersion(req_args) const noexcept;
|
||||||
|
|
||||||
void AddUser(req_args) const;
|
void AddUser(req_args) const;
|
||||||
void AdminAddUser(req_args) const;
|
void AdminAddUser(req_args) const;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue