libkdeedu/keduvocdocument
keduvoccsvwriter.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 export a KEduVocDocument to a delimited text file 00003 ----------------------------------------------------------------------- 00004 copyright : (C) 1999-2001 Ewald Arnold <kvoctrain@ewald-arnold.de> 00005 00006 (C) 2007 Peter Hedlund <peter.hedlund@kdemail.net> 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef KEDUVOCCSVWRITER_H 00019 #define KEDUVOCCSVWRITER_H 00020 00021 class QFile; 00022 class QString; 00023 class KEduVocDocument; 00024 00025 class KEduVocCsvWriter 00026 { 00027 public: 00028 KEduVocCsvWriter( QFile *file ); 00029 00030 bool writeDoc( KEduVocDocument *doc, const QString &generator ); 00031 00032 private: 00033 QFile *m_outputFile; 00034 KEduVocDocument *m_doc; 00035 }; 00036 00037 #endif
KDE 4.2 API Reference