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

« back to all changes in this revision

Viewing changes to lib/document/emptydocumentimpl.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>
28
28
// Local
29
29
#include <lib/document/abstractdocumentimpl.h>
30
30
 
31
 
namespace Gwenview {
 
31
namespace Gwenview
 
32
{
32
33
 
33
 
class EmptyDocumentImpl : public AbstractDocumentImpl {
 
34
class EmptyDocumentImpl : public AbstractDocumentImpl
 
35
{
34
36
public:
35
 
        EmptyDocumentImpl(Document*);
36
 
        ~EmptyDocumentImpl();
 
37
    EmptyDocumentImpl(Document*);
 
38
    ~EmptyDocumentImpl();
37
39
 
38
 
        virtual void init();
39
 
        virtual Document::LoadingState loadingState() const;
 
40
    virtual void init();
 
41
    virtual Document::LoadingState loadingState() const;
40
42
};
41
43
 
42
 
 
43
44
} // namespace
44
45
 
45
46
#endif /* EMPTYDOCUMENTIMPL_H */