diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlitepp.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sqlitepp.cpp b/src/sqlitepp.cpp index 10315e5..fa35b30 100644 --- a/src/sqlitepp.cpp +++ b/src/sqlitepp.cpp @@ -9,6 +9,14 @@ namespace sqlitepp { +const unsigned int VERSION_MAJOR = SQLITEPP_VERSION_MAJOR; + +const unsigned int VERSION_MINOR = SQLITEPP_VERSION_MINOR; + +const unsigned int VERSION_PATCH = SQLITEPP_VERSION_PATCH; + +const std::string VERSION = SQLITEPP_VERSION; + Openable::Openable(const bool open, const std::string& name) : m_open(open), m_name(name) { } |