2010-06-01 18:46:56 -04:00
|
|
|
/*
|
|
|
|
* rsversion.h
|
|
|
|
*
|
|
|
|
* Created on: Jun 23, 2009
|
|
|
|
* Author: alexandrut
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string>
|
2013-11-05 18:53:39 -05:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
// 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.
|
2010-06-01 18:46:56 -04:00
|
|
|
|
2011-06-25 12:16:59 -04:00
|
|
|
#define SVN_REVISION "Revision $WCREV$"
|
2012-09-05 21:29:44 -04:00
|
|
|
#define SVN_REVISION_NUMBER $WCREV$
|
2010-06-01 18:46:56 -04:00
|
|
|
|
|
|
|
namespace RsUtil {
|
|
|
|
|
2013-11-05 18:53:39 -05:00
|
|
|
uint32_t retroshareRevision();
|
2010-06-01 18:46:56 -04:00
|
|
|
std::string retroshareVersion();
|
|
|
|
|
2012-12-15 08:31:28 -05:00
|
|
|
}
|