835a516b31cd40a8b3c1e56ee962447ed72882a2
[platform/upstream/doxygen.git] / src / 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
32 class TranslatorJapaneseEn : public TranslatorEnglish
33 {
34   public:
35     virtual QCString idLanguage()
36     { return "japanese-en"; }
37     virtual QCString latexLanguageSupportCommand()
38     {
39       return "platex";
40     }
41     virtual QCString trRTFansicp()
42     {
43       return "932";
44     }
45
46     /*! Used as ansicpg for RTF fcharset
47      *  \see trRTFansicp() for a table of possible values.
48      */
49     virtual QCString trRTFCharSet()
50     {
51       return "128";
52     }
53 };
54
55 #endif