mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-03 14:45:12 -04:00
exchange of what version of retroshare our friends are using
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1308 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
bc82110c97
commit
0b6800a5ce
12 changed files with 335 additions and 51 deletions
13
libretroshare/src/util/rsversion.cc
Normal file
13
libretroshare/src/util/rsversion.cc
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* rsversion.cc
|
||||
*
|
||||
* Created on: Jun 23, 2009
|
||||
* Author: alexandrut
|
||||
*/
|
||||
|
||||
#include "rsversion.h"
|
||||
|
||||
std::string RsUtil::retroshareVersion()
|
||||
{
|
||||
return std::string(VERSION);
|
||||
}
|
21
libretroshare/src/util/rsversion.h
Normal file
21
libretroshare/src/util/rsversion.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* rsversion.h
|
||||
*
|
||||
* Created on: Jun 23, 2009
|
||||
* Author: alexandrut
|
||||
*/
|
||||
|
||||
#ifndef RSVERSIONXX_H_
|
||||
#define RSVERSIONXX_H_
|
||||
|
||||
#include <string>
|
||||
|
||||
#define VERSION "0.4.13a"
|
||||
|
||||
namespace RsUtil {
|
||||
|
||||
std::string retroshareVersion();
|
||||
|
||||
}
|
||||
|
||||
#endif /* RSVERSION_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue