00001 /* boss_transcription_de.h $Revision: 1.3 $ $Date: 2005/12/10 20:33:54 $ 00002 Copyright (C) 2000 University of Bonn. 00003 http://www.ikp.uni-bonn.de/boss 00004 00005 This program is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU General Public License 00007 as published by the Free Software Foundation; either version 2 00008 of the License, or (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 59 Temple Place - Suite 330, 00018 Boston, MA 02111-1307, USA. 00019 */ 00020 00027 using namespace std; 00028 00029 #ifndef BOSS_TRANSCRIPTION_DE_H 00030 #define BOSS_TRANSCRIPTION_DE_H 00031 00032 #include "boss_transcription.h" 00033 #include "boss_morphemes_de.h" 00034 #include "boss_g2p/boss_g2p_de.h" 00035 00044 class BOSS_Transcription_DE : public BOSS_Transcription { 00045 00046 protected: 00047 00048 unsigned type_flag; 00049 00050 BOSS_Morphemes_DE morph_trans; 00051 BOSS_g2p_DE g2p_trans; 00052 00053 00054 public: 00055 00056 BOSS_Transcription_DE(BOSS::Config & c, MySQL_Handler * db); 00057 virtual void operator () (xercesc::DOMNode * sentence); 00058 virtual string getDescription(); 00059 }; 00060 // end of boss_transcription group 00062 #endif