2012-07-24 15:31:15 +05:30
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/*
|
2013-04-24 17:14:03 +01:00
|
|
|
* This file is part of the LibreOffice project.
|
2012-07-24 15:31:15 +05:30
|
|
|
*
|
2013-04-24 17:14:03 +01:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2012-07-24 15:31:15 +05:30
|
|
|
*/
|
|
|
|
|
2013-10-28 03:43:44 +01:00
|
|
|
#ifndef INCLUDED_SFX2_INC_BLUTHSNDAPI_HXX
|
|
|
|
#define INCLUDED_SFX2_INC_BLUTHSNDAPI_HXX
|
2012-07-24 15:31:15 +05:30
|
|
|
|
|
|
|
#include <com/sun/star/frame/XFrame.hpp>
|
|
|
|
#include <com/sun/star/frame/XModel.hpp>
|
2013-09-12 11:23:02 +01:00
|
|
|
#include <rtl/ustring.hxx>
|
|
|
|
#include <tools/link.hxx>
|
2013-11-11 22:11:22 -06:00
|
|
|
#include <sfx2/dllapi.h>
|
2013-09-17 08:52:21 -03:00
|
|
|
#include <sfx2/mailmodelapi.hxx>
|
2012-07-24 15:31:15 +05:30
|
|
|
|
|
|
|
|
|
|
|
// class SfxBluetoothModel_Impl -----------------------------------------------
|
|
|
|
|
|
|
|
class SFX2_DLLPUBLIC SfxBluetoothModel:public SfxMailModel
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SendMailResult SaveAndSend( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame,
|
2013-04-07 12:06:47 +02:00
|
|
|
const OUString& rType );
|
2012-07-24 15:31:15 +05:30
|
|
|
SendMailResult Send( const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame );
|
|
|
|
};
|
|
|
|
|
2013-07-08 11:52:53 +02:00
|
|
|
#endif
|
2012-07-24 15:31:15 +05:30
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|