Doxygen
translator_je.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  *
4  *
5  * Copyright (C) 1997-2015 by Dimitri van Heesch.
6  *
7  * Permission to use, copy, modify, and distribute this software and its
8  * documentation under the terms of the GNU General Public License is hereby
9  * granted. No representations are made about the suitability of this software
10  * for any purpose. It is provided "as is" without express or implied warranty.
11  * See the GNU General Public License for more details.
12  *
13  * Documents produced by Doxygen are derivative works derived from the
14  * input used in their production; they are not affected by this license.
15  *
16  */
17 
18 /*
19  * translator_jp.h
20  *
21  * 1.2.5)
22  * First Translation
23  * by Kenji Nagamatsu
24  * 1.2.12)
25  * Update and Shift-Jis(_WIN32)
26  * by Ryunosuke Sato (30-Dec-2001)
27  */
28 
29 #ifndef TRANSLATOR_JE_H
30 #define TRANSLATOR_JE_H
31 
33 {
34  public:
35  virtual QCString idLanguage()
36  { return "japanese-en"; }
38  {
39  return "\\usepackage{CJKutf8}\n";
40  }
41  virtual QCString latexFontenc()
42  {
43  return "";
44  }
45  virtual QCString latexDocumentPre()
46  {
47  return "\\begin{CJK}{UTF8}{min}\n";
48  }
49  virtual QCString latexDocumentPost()
50  {
51  return "\\end{CJK}\n";
52  }
53  virtual QCString trRTFansicp()
54  {
55  return "932";
56  }
57 
58  /*! Used as ansicpg for RTF fcharset
59  * \see trRTFansicp() for a table of possible values.
60  */
61  virtual QCString trRTFCharSet()
62  {
63  return "128";
64  }
65 
66  virtual QCString trISOLang()
67  {
68  return "ja";
69  }
70 };
71 
72 #endif
TranslatorJapaneseEn::idLanguage
virtual QCString idLanguage()
Definition: translator_je.h:50
TranslatorJapaneseEn::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_je.h:76
TranslatorJapaneseEn::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_je.h:52
TranslatorJapaneseEn::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_je.h:68
TranslatorEnglish
Definition: translator_en.h:43
TranslatorJapaneseEn::trISOLang
virtual QCString trISOLang()
Definition: translator_je.h:81
TranslatorJapaneseEn::latexDocumentPre
virtual QCString latexDocumentPre()
Definition: translator_je.h:60
TranslatorJapaneseEn::latexFontenc
virtual QCString latexFontenc()
Definition: translator_je.h:56
TranslatorJapaneseEn::latexDocumentPost
virtual QCString latexDocumentPost()
Definition: translator_je.h:64
TranslatorJapaneseEn
Definition: translator_je.h:32
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108