2010-07-05 06:52:50 -04:00
|
|
|
/*
|
|
|
|
* rsversion.h
|
|
|
|
*
|
|
|
|
* Created on: Jun 23, 2009
|
|
|
|
* Author: alexandrut
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
2013-10-24 20:42:49 -04:00
|
|
|
#include <inttypes.h>
|
2010-07-05 06:52:50 -04:00
|
|
|
|
2013-11-05 18:14:30 -05:00
|
|
|
// These versioning parameters are in the header because plugin versioning requires it.
|
|
|
|
// Please use the functions below, and don't refer directly to the #defines.
|
|
|
|
|
|
|
|
#define SVN_REVISION "Revision 6890"
|
|
|
|
#define SVN_REVISION_NUMBER 6890
|
|
|
|
|
2010-07-05 06:52:50 -04:00
|
|
|
namespace RsUtil {
|
|
|
|
|
2013-10-24 20:42:49 -04:00
|
|
|
uint32_t retroshareRevision();
|
2010-07-05 06:52:50 -04:00
|
|
|
std::string retroshareVersion();
|
|
|
|
|
2012-11-20 07:09:45 -05:00
|
|
|
}
|