mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
60 lines
1.6 KiB
C
60 lines
1.6 KiB
C
![]() |
/*
|
||
|
Copyright (c) 2009 Constantin Berzan <exit3219@gmail.com>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or modify it
|
||
|
under the terms of the GNU Library General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or (at your
|
||
|
option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
||
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
||
|
License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to the
|
||
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
02110-1301, USA.
|
||
|
*/
|
||
|
|
||
|
#ifndef MESSAGECOMPOSER_ATTACHMENTJOB_H
|
||
|
#define MESSAGECOMPOSER_ATTACHMENTJOB_H
|
||
|
|
||
|
#include "contentjobbase.h"
|
||
|
#include "messagecomposer_export.h"
|
||
|
|
||
|
#include <messagecore/attachment/attachmentpart.h>
|
||
|
|
||
|
namespace boost {
|
||
|
template <typename T> class shared_ptr;
|
||
|
}
|
||
|
|
||
|
namespace MessageComposer {
|
||
|
|
||
|
class AttachmentJobPrivate;
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
class MESSAGECOMPOSER_EXPORT AttachmentJob : public ContentJobBase
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit AttachmentJob( MessageCore::AttachmentPart::Ptr part, QObject *parent = 0 );
|
||
|
virtual ~AttachmentJob();
|
||
|
|
||
|
MessageCore::AttachmentPart::Ptr attachmentPart() const;
|
||
|
void setAttachmentPart( MessageCore::AttachmentPart::Ptr part );
|
||
|
|
||
|
protected Q_SLOTS:
|
||
|
virtual void doStart();
|
||
|
virtual void process();
|
||
|
|
||
|
private:
|
||
|
Q_DECLARE_PRIVATE( AttachmentJob )
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|