Sayonara Player
LanguageUtils.h
1 #ifndef LANGUAGEUTILS_H
2 #define LANGUAGEUTILS_H
3 
4 class QString;
5 
6 namespace Util
7 {
8  namespace Language
9  {
10  QString get_share_path(const QString& four_letter);
11  QString get_ftp_path(const QString& four_letter);
12  QString get_home_target_path(const QString& four_letter);
13  QString get_used_language_file(const QString& four_letter);
14  QString get_icon_path(const QString& four_letter);
15  QString extract_four_letter(const QString& language_file);
16  QString get_checksum(const QString& four_letter);
17  }
18 }
19 
20 #endif // LANGUAGEUTILS_H
Helper functions.
Definition: GenreView.h:35