-rw-r--r-- | microkde/ktempfile.cpp | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/microkde/ktempfile.cpp b/microkde/ktempfile.cpp new file mode 100644 index 0000000..b9166bd --- a/dev/null +++ b/microkde/ktempfile.cpp | |||
@@ -0,0 +1,25 @@ | |||
1 | #include <qtextstream.h> | ||
2 | |||
3 | #include "ktempfile.h" | ||
4 | |||
5 | KTempFile::KTempFile() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | KTempFile::KTempFile( const QString &filename, const QString &extension ) | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void KTempFile::setAutoDelete( bool ) | ||
14 | { | ||
15 | } | ||
16 | |||
17 | QString KTempFile::name() | ||
18 | { | ||
19 | return QString::null; | ||
20 | } | ||
21 | |||
22 | QTextStream *KTempFile::textStream() | ||
23 | { | ||
24 | return 0; | ||
25 | } | ||