preparing for functions

This commit is contained in:
2021-07-14 23:18:54 +02:00
parent eebfaacde4
commit 24d4fb2567
9 changed files with 535 additions and 467 deletions

View File

@@ -6,14 +6,14 @@
namespace usql {
class Exception : public std::exception {
private:
std::string cause;
class Exception : public std::exception {
private:
std::string cause;
public:
Exception(const std::string &msg);
public:
Exception(const std::string &msg);
const char *what() const noexcept;
};
const char *what() const noexcept;
};
}