Files
itgmania212121/stepmania/src/TitleSubstitution.h
T

29 lines
636 B
C++

#ifndef TITLE_SUBSTITUTION_H
#define TITLE_SUBSTITUTION_H 1
struct TitleTrans;
class TitleSubst
{
vector<TitleTrans *> ttab;
void AddTrans(const CString &tf, const CString &sf, const CString &af,
const CString &tt, const CString &st, const CString &at, bool translit);
public:
TitleSubst(const CString &section);
~TitleSubst();
void Load(const CString &filename, const CString &section);
void Subst(CString &title, CString &sub, CString &artist,
CString &ttitle, CString &tsub, CString &tartist);
};
#endif
/*
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
*
* Glenn Maynard
*/