mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-12-26 03:41:55 +01:00
14 lines
293 B
C++
14 lines
293 B
C++
|
|
||
|
#ifndef _CONST_STR_HPP_
|
||
|
#define _CONST_STR_HPP_
|
||
|
|
||
|
#include "wstringEx/wstringEx.hpp"
|
||
|
#include "gui/text.hpp"
|
||
|
#include "defines.h"
|
||
|
#include "svnrev.h"
|
||
|
|
||
|
static const string &VERSION_STRING = sfmt("%s (%s-r%s)", APP_NAME, APP_VERSION, SVN_REV);
|
||
|
static const wstringEx SVN_REV_W(SVN_REV);
|
||
|
|
||
|
#endif
|