~ubuntu-branches/ubuntu/precise/gwenview/precise-proposed

« back to all changes in this revision

Viewing changes to lib/resize/resizeimageoperation.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20111215141754-z043hyx69dulbggf
Tags: upstream-4.7.90
Import upstream version 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
 
1
// vim: set tabstop=4 shiftwidth=4 expandtab:
2
2
/*
3
3
Gwenview: an image viewer
4
4
Copyright 2007 Aurélien Gâteau <agateau@kde.org>
30
30
// Local
31
31
#include <lib/abstractimageoperation.h>
32
32
 
33
 
namespace Gwenview {
34
 
 
 
33
namespace Gwenview
 
34
{
35
35
 
36
36
struct ResizeImageOperationPrivate;
37
 
class GWENVIEWLIB_EXPORT ResizeImageOperation : public AbstractImageOperation {
 
37
class GWENVIEWLIB_EXPORT ResizeImageOperation : public AbstractImageOperation
 
38
{
38
39
public:
39
 
        ResizeImageOperation(const QSize& size);
40
 
        ~ResizeImageOperation();
 
40
    ResizeImageOperation(const QSize& size);
 
41
    ~ResizeImageOperation();
41
42
 
42
 
        virtual void redo();
43
 
        virtual void undo();
 
43
    virtual void redo();
 
44
    virtual void undo();
44
45
 
45
46
private:
46
 
        ResizeImageOperationPrivate* const d;
 
47
    ResizeImageOperationPrivate* const d;
47
48
};
48
49
 
49
 
 
50
50
} // namespace
51
51
 
52
52
#endif /* RESIZEIMAGEOPERATION_H */