diff options
author | Mathias Bauer <mba@openoffice.org> | 2000-12-01 10:45:37 +0000 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2000-12-01 10:45:37 +0000 |
commit | 5cd74a60daf891317630967525f23dd960ebc52d (patch) | |
tree | d12aa1b3a94e5c3540ae0e8ad8b6a2485b7d55e3 /unotools/inc | |
parent | c072fd9cb28dd0ff3e47c0218f64546b54561f11 (diff) |
#80466#: new method GetFolderContents
Diffstat (limited to 'unotools/inc')
-rw-r--r-- | unotools/inc/unotools/localfilehelper.hxx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/unotools/inc/unotools/localfilehelper.hxx b/unotools/inc/unotools/localfilehelper.hxx index ed6c0121013a..74167a9584fc 100644 --- a/unotools/inc/unotools/localfilehelper.hxx +++ b/unotools/inc/unotools/localfilehelper.hxx @@ -2,9 +2,9 @@ * * $RCSfile: localfilehelper.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: mba $ $Date: 2000-11-15 11:52:31 $ + * last change: $Author: mba $ $Date: 2000-12-01 11:45:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -61,6 +61,12 @@ #ifndef _UNOTOOLS_LOCALFILEHELPER_HXX #define _UNOTOOLS_LOCALFILEHELPER_HXX +#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ +#include <com/sun/star/uno/Sequence.hxx> +#endif + +#include <rtl/ustring.hxx> + #ifndef _STRING_HXX #include <tools/string.hxx> #endif @@ -88,6 +94,8 @@ public: static sal_Bool IsLocalFile( const String& rName ); + static ::com::sun::star::uno::Sequence< ::rtl::OUString > + GetFolderContents( const ::rtl::OUString& rFolder, sal_Bool bFolder ); }; }; |