okular/core/view_p.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1,004 B
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2008 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef OKULAR_VIEW_P_H
#define OKULAR_VIEW_P_H
2018-08-31 09:23:45 +00:00
#include <QHash>
#include <QString>
namespace Okular
{
class DocumentPrivate;
class View;
class ViewPrivate
{
public:
ViewPrivate();
virtual ~ViewPrivate();
2020-02-21 15:11:42 +00:00
ViewPrivate(const ViewPrivate &) = delete;
ViewPrivate &operator=(const ViewPrivate &) = delete;
QString name;
DocumentPrivate *document;
};
}
#endif