Menu

[r1967]: / trunk / src / sdk / configmanager-revision.cpp  Maximize  Restore  History

Download this file

25 lines (18 with data), 595 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ------------------------------------------------------------------------------------------------------------------
* Decouple the autorevisioning code, so we don't need to recompile the whole manager each time.
* It's bad enough we have to re-link the SDK...
*/
#include "sdk_precomp.h"
#ifndef CB_PRECOMP
#include "configmanager.h"
#include <wx/string.h>
#endif
#include "autorevision.h"
wxString ConfigManager::GetRevisionString()
{
return wxString(autorevision::svnRevision);
}
unsigned int ConfigManager::GetRevisionNumber()
{
return autorevision::svn_revision;
}