50 |
|
#include <locale> |
51 |
|
#include "utils/simError.h" |
52 |
|
#include "utils/CaseConversion.hpp" |
53 |
+ |
#include "utils/Revision.hpp" |
54 |
|
#include "brains/Register.hpp" |
55 |
|
#include "brains/SimCreator.hpp" |
56 |
|
#include "brains/SimInfo.hpp" |
79 |
|
initSimError(); // the error handler |
80 |
|
//srand48( 1337 ); // the random number generator. |
81 |
|
|
82 |
< |
std::string svnrev; |
82 |
> |
std::string svnrev(g_REVISION, strnlen(g_REVISION, 20)); |
83 |
|
//convert a macro from compiler to a string in c++ |
84 |
< |
STR_DEFINE(svnrev, SVN_REV ); |
84 |
> |
//STR_DEFINE(svnrev, SVN_REV ); |
85 |
|
|
86 |
|
std::string revision; |
87 |
|
|