28 lines
523 B
C++
28 lines
523 B
C++
#ifndef TITLE_SUBSTITUTION_H
|
|
#define TITLE_SUBSTITUTION_H 1
|
|
|
|
struct TitleTrans;
|
|
|
|
class TitleSubst
|
|
{
|
|
vector<TitleTrans *> ttab;
|
|
|
|
void AddTrans(const TitleTrans &tr);
|
|
public:
|
|
TitleSubst(const CString §ion);
|
|
~TitleSubst();
|
|
|
|
void Load(const CString &filename, const CString §ion);
|
|
|
|
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
|
|
*/
|