Files
scylladb/version.hh
Glauber Costa 90b9de9939 add file with some version strings that don't really belong anywhere
This should really be generated by the build scripts, but since we haven't
even discussed any versioning scheme, I'm introducing the functions here - they
are needed to populate some system tables, and later on we can make them return
the right thing.

Signed-off-by: Glauber Costa <glommer@cloudius-systems.com>
2015-07-07 11:38:22 -04:00

15 lines
209 B
C++

#pragma once
#include "core/sstring.hh"
namespace version {
inline const int native_protocol() {
return 3;
}
inline const sstring& release() {
static sstring v = "SeastarDB v0.1";
return v;
}
}