00001 #ifndef MINIKDE_KTEMPFILE_H 00002 #define MINIKDE_KTEMPFILE_H 00003 00004 #include <qstring.h> 00005 00006 class QTextStream; 00007 00008 class KTempFile 00009 { 00010 public: 00011 KTempFile(); 00012 KTempFile( const QString &filename, const QString &extension ); 00013 00014 void setAutoDelete( bool ); 00015 QString name(); 00016 00017 QTextStream *textStream(); 00018 }; 00019 00020 #endif
1.4.2