adds documentation on locations of version info

This commit is contained in:
Peter Thorson
2013-06-09 11:07:19 -05:00
parent dc048ed021
commit 64b1b52297
2 changed files with 10 additions and 1 deletions

View File

@@ -61,7 +61,7 @@ int main(int argc, char* argv[]) {
std::stringstream url;
url << uri << "/runCase?case=" << i << "&agent=WebSocket++/0.3.0-dev";
url << uri << "/runCase?case=" << i << "&agent=WebSocket++/0.3.0-alpha1";
con = echo_client.get_connection(url.str(), ec);

View File

@@ -30,6 +30,15 @@
namespace websocketpp {
/*
other places where version information is kept
- echo_client
- readme.md
- changelog.md
- Doxyfile
- CMakeLists.txt
*/
static int const major_version = 0;
static int const minor_version = 3;
static int const patch_version = 0;