mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
e5cd917645
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1894 b45a01b8-16f6-495d-af2f-9b41ad6348cc
15 lines
220 B
C++
15 lines
220 B
C++
/*
|
|
* rsversion.cc
|
|
*
|
|
* Created on: Jun 23, 2009
|
|
* Author: alexandrut
|
|
*/
|
|
|
|
#include "rsversion.h"
|
|
|
|
std::string RsUtil::retroshareVersion()
|
|
{
|
|
return std::string(LIB_VERSION) + " " + std::string(SVN_REVISION);
|
|
|
|
}
|