Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * Version: MPL 1.1 / GPLv3+ / LGPLv3+
4 : *
5 : * The contents of this file are subject to the Mozilla Public License Version
6 : * 1.1 (the "License"); you may not use this file except in compliance with
7 : * the License. You may obtain a copy of the License at
8 : * http://www.mozilla.org/MPL/
9 : *
10 : * Software distributed under the License is distributed on an "AS IS" basis,
11 : * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 : * for the specific language governing rights and limitations under the
13 : * License.
14 : *
15 : * The Initial Developer of the Original Code is
16 : * SUSE.
17 : *
18 : * Portions created by the Initial Developer are Copyright (C) 2011 the
19 : * Initial Developer. All Rights Reserved.
20 : *
21 : * Contributor(s): Muthu Subramanian <sumuthu@suse.com>
22 : *
23 : * Alternatively, the contents of this file may be used under the terms of
24 : * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
25 : * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
26 : * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
27 : * instead of those above.
28 : */
29 :
30 : #ifndef INCLUDED_SFX_BLUETOOTHL_HXX
31 : #define INCLUDED_SFX_BLUETOOTH_HXX
32 :
33 : #include <vector>
34 : #include <com/sun/star/frame/XFrame.hpp>
35 : #include <com/sun/star/frame/XModel.hpp>
36 : #include "tools/link.hxx"
37 : #include <tools/string.hxx>
38 : #include "sfx2/dllapi.h"
39 : #include "mailmodelapi.hxx"
40 :
41 :
42 : // class SfxBluetoothModel_Impl -----------------------------------------------
43 :
44 0 : class SFX2_DLLPUBLIC SfxBluetoothModel:public SfxMailModel
45 : {
46 : public:
47 : SendMailResult SaveAndSend( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame,
48 : const rtl::OUString& rType );
49 : SendMailResult Send( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame );
50 : };
51 :
52 : #endif // INCLUDED_SFX_BLUETOOTH_HXX
53 :
54 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|