SWC-DB  v0.5.12 C++ documentations
SWC-DB© (Super Wide Column Database) - High Performance Scalable Database (https://github.com/kashirin-alex/swc-db)
Version.cc
Go to the documentation of this file.
1 /*
2  * SWC-DB© Copyright since 2019 Alex Kashirin <kashirin.alex@gmail.com>
3  * License details at <https://github.com/kashirin-alex/swc-db/#license>
4  */
5 
6 
7 #include "swcdb/Version.h"
8 
9 
10 
11 static const char SWCDB_VERSION[] = SWCDB_SET_VERSION;
12 
13 static const char SWCDB_COPYRIGHT[] = SWCDB_SET_COPYRIGHT;
14 
15 
16 const char* swcdb_version() noexcept {
17  return SWCDB_VERSION;
18 }
19 
20 const char* swcdb_copyrights() noexcept {
21  return SWCDB_COPYRIGHT;
22 }
23 
24 
25 
SWCDB_SET_COPYRIGHT
#define SWCDB_SET_COPYRIGHT
Definition: Version.h:12
SWCDB_VERSION
static const char SWCDB_VERSION[]
Definition: Version.cc:11
swcdb_copyrights
const char * swcdb_copyrights() noexcept
Definition: Version.cc:20
Version.h
swcdb_version
const char * swcdb_version() noexcept
Definition: Version.cc:16
SWCDB_SET_VERSION
#define SWCDB_SET_VERSION
Definition: Version.h:10
SWCDB_COPYRIGHT
static const char SWCDB_COPYRIGHT[]
Definition: Version.cc:13