Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 : /**************************************************************************
21 : TODO
22 : **************************************************************************
23 :
24 : *************************************************************************/
25 : #ifndef _FTP_STRCONT_HXX_
26 : #define _FTP_STRCONT_HXX_
27 :
28 : #include <com/sun/star/io/XInputStream.hpp>
29 : #include <com/sun/star/io/XOutputStream.hpp>
30 : #include "ftpcfunc.hxx"
31 :
32 :
33 : namespace ftp {
34 :
35 :
36 : class FTPInputStream;
37 :
38 :
39 : class FTPOutputStreamContainer
40 : : public FTPStreamContainer
41 : {
42 : public:
43 :
44 : FTPOutputStreamContainer(const com::sun::star::uno::Reference<
45 : com::sun::star::io::XOutputStream>& out);
46 :
47 0 : virtual ~FTPOutputStreamContainer() {}
48 :
49 : virtual size_t write(void *buffer,size_t size,size_t nmemb);
50 :
51 :
52 : private:
53 :
54 : com::sun::star::uno::Reference<
55 : com::sun::star::io::XOutputStream> m_out;
56 : };
57 :
58 :
59 : class FTPInputStreamContainer
60 : : public FTPStreamContainer
61 : {
62 : public:
63 :
64 : FTPInputStreamContainer(FTPInputStream* out);
65 :
66 0 : virtual ~FTPInputStreamContainer() {}
67 :
68 : virtual size_t write(void *buffer,size_t size,size_t nmemb);
69 :
70 : com::sun::star::uno::Reference<
71 : com::sun::star::io::XInputStream> operator()();
72 :
73 : private:
74 :
75 : FTPInputStream* m_out;
76 : };
77 :
78 :
79 : }
80 :
81 :
82 : #endif
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|