SelectTypeToString, StringToSelectType, LayoutTypeToString, StringToLayoutType

This commit is contained in:
Glenn Maynard
2005-02-12 05:08:43 +00:00
parent 93b8ba48b6
commit ccc31cad7f
4 changed files with 48 additions and 25 deletions
+15
View File
@@ -2,6 +2,21 @@
#include "OptionRow.h"
#include "RageUtil.h"
static const CString SelectTypeNames[NUM_SELECT_TYPES] = {
"SelectOne",
"SelectMultiple",
"SelectNone",
};
XToString( SelectType );
StringToX( SelectType );
static const CString LayoutTypeNames[NUM_LAYOUT_TYPES] = {
"ShowAllInLine",
"ShowOneLine",
};
XToString( LayoutType );
StringToX( LayoutType );
OptionRow::OptionRow()
{
}