MCPcopy Create free account
hub / github.com/QNapi/qnapi / SubtitleLanguage

Class SubtitleLanguage

libqnapi/src/subtitlelanguage.h:21–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19#include <QStringList>
20
21class SubtitleLanguage {
22 public:
23 SubtitleLanguage(QString source = "");
24
25 void setLanguage(QString source);
26
27 QString toTwoLetter();
28 QString toTriLetter();
29 QString toFullName();
30
31 QStringList listLanguages();
32 QStringList listLanguageTwoLetterCodes();
33
34 private:
35 QStringList codes2l, codes3l, names;
36 int idx;
37
38 void fill_tables();
39};
40
41#endif

Callers 7

npLangWrapperMethod · 0.85
lookForSubtitlesMethod · 0.85
readGeneralConfigMethod · 0.85
analyzeMethod · 0.85
mainFunction · 0.85
foreachFunction · 0.85
readConfigMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected