diff options
author | Martin Gallwey <mtg@openoffice.org> | 2001-08-14 16:35:24 +0000 |
---|---|---|
committer | Martin Gallwey <mtg@openoffice.org> | 2001-08-14 16:35:24 +0000 |
commit | f0643d7b72a89a5c70eed59f7079350b91e26be6 (patch) | |
tree | de788b754794a18e8d0e6b012be5e3480bfc8855 /unotools/source/ucbhelper/XTempFile.hxx | |
parent | 758fada468dd3cec88cb80a024cb480c7b961a91 (diff) |
#91020# set temp base dir in webtop
Diffstat (limited to 'unotools/source/ucbhelper/XTempFile.hxx')
-rw-r--r-- | unotools/source/ucbhelper/XTempFile.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/unotools/source/ucbhelper/XTempFile.hxx b/unotools/source/ucbhelper/XTempFile.hxx index dc6928858906..40c76fb8ff90 100644 --- a/unotools/source/ucbhelper/XTempFile.hxx +++ b/unotools/source/ucbhelper/XTempFile.hxx @@ -2,9 +2,9 @@ * * $RCSfile: XTempFile.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mtg $ $Date: 2001-08-01 12:56:13 $ + * last change: $Author: mtg $ $Date: 2001-08-14 17:33:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -79,14 +79,12 @@ #ifndef _CPPUHELPER_WEAK_HXX_ #include <cppuhelper/weak.hxx> #endif -#ifndef _UNOTOOLS_TEMPFILE_HXX -#include <unotools/tempfile.hxx> -#endif #ifndef _OSL_MUTEX_HXX_ #include <osl/mutex.hxx> #endif class SvStream; +namespace utl { class TempFile; } class XTempFile : public com::sun::star::io::XInputStream, public com::sun::star::io::XOutputStream, @@ -94,9 +92,9 @@ class XTempFile : public com::sun::star::io::XInputStream, public cppu::OWeakObject { protected: - ::utl::TempFile maTempFile; - ::osl::Mutex maMutex; - SvStream* mpStream; + ::utl::TempFile* mpTempFile; + ::osl::Mutex maMutex; + SvStream* mpStream; void checkError () const; void checkConnected () const; |