ftpurl.hxx (6df1ea1f) | ftpurl.hxx (72cd26dd) |
---|---|
1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 20 unchanged lines hidden (view full) --- 29 30#ifndef _FTP_FTPURL_HXX_ 31#define _FTP_FTPURL_HXX_ 32 33#include "curl.hxx" 34#include <curl/easy.h> 35#include <com/sun/star/io/XOutputStream.hpp> 36 | 1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance --- 20 unchanged lines hidden (view full) --- 29 30#ifndef _FTP_FTPURL_HXX_ 31#define _FTP_FTPURL_HXX_ 32 33#include "curl.hxx" 34#include <curl/easy.h> 35#include <com/sun/star/io/XOutputStream.hpp> 36 |
37#include <stdio.h> | |
38#include <rtl/ustring.hxx> 39#include <osl/mutex.hxx> | 37#include <rtl/ustring.hxx> 38#include <osl/mutex.hxx> |
39#include <osl/file.h> |
|
40#include <vector> 41 42#include "ftpdirp.hxx" 43#include "ftpcfunc.hxx" 44 45namespace ftp { 46 47 /** Forward declarations. --- 74 unchanged lines hidden (view full) --- 122 /** returns the unencoded title */ 123 rtl::OUString child(void) const; 124 125 std::vector<FTPDirentry> list(sal_Int16 nMode) const 126 throw(curl_exception); 127 128 // returns a pointer to an open tempfile, 129 // seeked to the beginning of. | 40#include <vector> 41 42#include "ftpdirp.hxx" 43#include "ftpcfunc.hxx" 44 45namespace ftp { 46 47 /** Forward declarations. --- 74 unchanged lines hidden (view full) --- 122 /** returns the unencoded title */ 123 rtl::OUString child(void) const; 124 125 std::vector<FTPDirentry> list(sal_Int16 nMode) const 126 throw(curl_exception); 127 128 // returns a pointer to an open tempfile, 129 // seeked to the beginning of. |
130 FILE* open() throw(curl_exception); | 130 oslFileHandle open() throw(curl_exception); |
131 132 FTPDirentry direntry() const throw(curl_exception); 133 134 void insert(bool ReplaceExisting,void* stream) const 135 throw(curl_exception); 136 137 void mkdir(bool ReplaceExisting) const 138 throw(curl_exception); --- 36 unchanged lines hidden --- | 131 132 FTPDirentry direntry() const throw(curl_exception); 133 134 void insert(bool ReplaceExisting,void* stream) const 135 throw(curl_exception); 136 137 void mkdir(bool ReplaceExisting) const 138 throw(curl_exception); --- 36 unchanged lines hidden --- |