LibreOffice Module shell (master) 1
smplmailmsg.cxx
Go to the documentation of this file.
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#include <osl/file.h>
22#include "smplmailmsg.hxx"
23
25
26using namespace cppu;
27
29{
30}
31
32void SAL_CALL CSmplMailMsg::setBody( const OUString& aBody )
33{
34 m_aBody = aBody;
35}
36
37OUString SAL_CALL CSmplMailMsg::getBody( )
38{
39 return m_aBody;
40}
41
42void SAL_CALL CSmplMailMsg::setRecipient( const OUString& aRecipient )
43{
44 m_aRecipient = aRecipient;
45}
46
47OUString SAL_CALL CSmplMailMsg::getRecipient( )
48{
49 return m_aRecipient;
50}
51
52void SAL_CALL CSmplMailMsg::setCcRecipient( const Sequence< OUString >& aCcRecipient )
53{
54 m_CcRecipients = aCcRecipient;
55}
56
58{
59 return m_CcRecipients;
60}
61
62void SAL_CALL CSmplMailMsg::setBccRecipient( const Sequence< OUString >& aBccRecipient )
63{
64 m_BccRecipients = aBccRecipient;
65}
66
68{
69 return m_BccRecipients;
70}
71
72void SAL_CALL CSmplMailMsg::setOriginator( const OUString& aOriginator )
73{
74 m_aOriginator = aOriginator;
75}
76
77OUString SAL_CALL CSmplMailMsg::getOriginator( )
78{
79 return m_aOriginator;
80}
81
82void SAL_CALL CSmplMailMsg::setSubject( const OUString& aSubject )
83{
84 m_aSubject = aSubject;
85}
86
87OUString SAL_CALL CSmplMailMsg::getSubject( )
88{
89 return m_aSubject;
90}
91
92void SAL_CALL CSmplMailMsg::setAttachement( const Sequence< OUString >& aAttachement )
93{
94 m_Attachements = aAttachement;
95}
96
98{
99 return m_Attachements;
100}
101
102/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual OUString SAL_CALL getBody() override
Definition: smplmailmsg.cxx:37
OUString m_aRecipient
Definition: smplmailmsg.hxx:72
OUString m_aSubject
Definition: smplmailmsg.hxx:74
virtual void SAL_CALL setBody(const OUString &aBody) override
Definition: smplmailmsg.cxx:32
virtual void SAL_CALL setRecipient(const OUString &aRecipient) override
Definition: smplmailmsg.cxx:42
css::uno::Sequence< OUString > m_CcRecipients
Definition: smplmailmsg.hxx:75
OUString m_aBody
Definition: smplmailmsg.hxx:71
virtual void SAL_CALL setAttachement(const css::uno::Sequence< OUString > &aAttachement) override
Definition: smplmailmsg.cxx:92
virtual void SAL_CALL setBccRecipient(const css::uno::Sequence< OUString > &aBccRecipient) override
Definition: smplmailmsg.cxx:62
css::uno::Sequence< OUString > m_Attachements
Definition: smplmailmsg.hxx:77
css::uno::Sequence< OUString > m_BccRecipients
Definition: smplmailmsg.hxx:76
virtual void SAL_CALL setSubject(const OUString &aSubject) override
Definition: smplmailmsg.cxx:82
virtual void SAL_CALL setCcRecipient(const css::uno::Sequence< OUString > &aCcRecipient) override
Definition: smplmailmsg.cxx:52
virtual OUString SAL_CALL getRecipient() override
Definition: smplmailmsg.cxx:47
virtual OUString SAL_CALL getSubject() override
Definition: smplmailmsg.cxx:87
virtual css::uno::Sequence< OUString > SAL_CALL getAttachement() override
Definition: smplmailmsg.cxx:97
virtual css::uno::Sequence< OUString > SAL_CALL getBccRecipient() override
Definition: smplmailmsg.cxx:67
OUString m_aOriginator
Definition: smplmailmsg.hxx:73
virtual void SAL_CALL setOriginator(const OUString &aOriginator) override
Definition: smplmailmsg.cxx:72
virtual css::uno::Sequence< OUString > SAL_CALL getCcRecipient() override
Definition: smplmailmsg.cxx:57
virtual OUString SAL_CALL getOriginator() override
Definition: smplmailmsg.cxx:77