mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-18 19:31:37 -05:00
b785132cbe
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7113 b45a01b8-16f6-495d-af2f-9b41ad6348cc
23 lines
322 B
C++
23 lines
322 B
C++
/*
|
|
* rsversion.cc
|
|
*
|
|
* Created on: Jun 23, 2009
|
|
* Author: alexandrut
|
|
*/
|
|
|
|
#include "rsversion.h"
|
|
|
|
#define LIB_VERSION "0.6.x"
|
|
|
|
std::string RsUtil::retroshareVersion()
|
|
{
|
|
return std::string(LIB_VERSION) + " " + std::string(SVN_REVISION);
|
|
|
|
}
|
|
|
|
uint32_t RsUtil::retroshareRevision()
|
|
{
|
|
return SVN_REVISION_NUMBER;
|
|
}
|
|
|