Blame src/translator_je.h

Packit 1c1d7e
/******************************************************************************
Packit 1c1d7e
 *
Packit 1c1d7e
 *
Packit 1c1d7e
 *
Packit 1c1d7e
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Permission to use, copy, modify, and distribute this software and its
Packit 1c1d7e
 * documentation under the terms of the GNU General Public License is hereby
Packit 1c1d7e
 * granted. No representations are made about the suitability of this software
Packit 1c1d7e
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit 1c1d7e
 * See the GNU General Public License for more details.
Packit 1c1d7e
 *
Packit 1c1d7e
 * Documents produced by Doxygen are derivative works derived from the
Packit 1c1d7e
 * input used in their production; they are not affected by this license.
Packit 1c1d7e
 *
Packit 1c1d7e
 */
Packit 1c1d7e
Packit 1c1d7e
/*
Packit 1c1d7e
 * translator_jp.h
Packit 1c1d7e
 *
Packit 1c1d7e
 * 1.2.5)
Packit 1c1d7e
 * First Translation
Packit 1c1d7e
 *      by Kenji Nagamatsu
Packit 1c1d7e
 * 1.2.12)
Packit 1c1d7e
 * Update and Shift-Jis(_WIN32)
Packit 1c1d7e
 *      by Ryunosuke Sato (30-Dec-2001)
Packit 1c1d7e
 */
Packit 1c1d7e
Packit 1c1d7e
#ifndef TRANSLATOR_JE_H
Packit 1c1d7e
#define TRANSLATOR_JE_H
Packit 1c1d7e
Packit 1c1d7e
class TranslatorJapaneseEn : public TranslatorEnglish
Packit 1c1d7e
{
Packit 1c1d7e
  public:
Packit 1c1d7e
    virtual QCString idLanguage()
Packit 1c1d7e
    { return "japanese-en"; }
Packit 1c1d7e
    virtual QCString latexLanguageSupportCommand()
Packit 1c1d7e
    {
Packit 1c1d7e
      return "platex";
Packit 1c1d7e
    }
Packit 1c1d7e
    virtual QCString trRTFansicp()
Packit 1c1d7e
    {
Packit 1c1d7e
      return "932";
Packit 1c1d7e
    }
Packit 1c1d7e
Packit 1c1d7e
    /*! Used as ansicpg for RTF fcharset
Packit 1c1d7e
     *  \see trRTFansicp() for a table of possible values.
Packit 1c1d7e
     */
Packit 1c1d7e
    virtual QCString trRTFCharSet()
Packit 1c1d7e
    {
Packit 1c1d7e
      return "128";
Packit 1c1d7e
    }
Packit 1c1d7e
};
Packit 1c1d7e
Packit 1c1d7e
#endif