summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpurl.hxx
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2002-10-17 15:28:24 +0000
committerAndreas Bille <abi@openoffice.org>2002-10-17 15:28:24 +0000
commit868899703f29fb3671d800a59c8fb24ee546d5b9 (patch)
treebdb8e7f74eb22142882dc5ce99e4d0864d8bc6d0 /ucb/source/ucp/ftp/ftpurl.hxx
parentc43ee94a7e65e0280f23bc6379d9902266108c58 (diff)
#100904# removed a bug for saving document
Diffstat (limited to 'ucb/source/ucp/ftp/ftpurl.hxx')
-rw-r--r--ucb/source/ucp/ftp/ftpurl.hxx16
1 files changed, 13 insertions, 3 deletions
diff --git a/ucb/source/ucp/ftp/ftpurl.hxx b/ucb/source/ucp/ftp/ftpurl.hxx
index 0225ae4f966a..d526fa215c5b 100644
--- a/ucb/source/ucp/ftp/ftpurl.hxx
+++ b/ucb/source/ucp/ftp/ftpurl.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: ftpurl.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: abi $ $Date: 2002-10-15 13:04:04 $
+ * last change: $Author: abi $ $Date: 2002-10-17 16:28:23 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -112,6 +112,14 @@ namespace ftp {
sal_Int32 n_err;
};
+ class CurlInput {
+
+ public:
+
+ // returns the number of bytes actually read
+ virtual sal_Int32 read(sal_Int8 *dest,sal_Int32 nBytesRequested) = 0;
+ };
+
class FTPURL
{
@@ -145,6 +153,7 @@ namespace ftp {
rtl::OUString parent() const;
+ void child(const rtl::OUString& title);
std::vector<FTPDirentry> list(sal_Int16 nMode) const
throw(curl_exception);
@@ -155,7 +164,8 @@ namespace ftp {
FTPDirentry direntry() const throw(curl_exception);
- void insert(bool ReplaceExisting) const throw(curl_exception);
+ void insert(bool ReplaceExisting,void* stream) const
+ throw(curl_exception);
private: