mirror of
https://github.com/QuasarApp/DocsSite.git
synced 2025-05-14 20:09:39 +00:00
19 lines
318 B
C++
19 lines
318 B
C++
#ifndef CQTDEPLOYERABOUT_H
|
|
#define CQTDEPLOYERABOUT_H
|
|
|
|
#include <abstractpage.h>
|
|
|
|
class CQtDeployerAbout : public AbstractPage
|
|
{
|
|
public:
|
|
CQtDeployerAbout();
|
|
|
|
// AbstractPage interface
|
|
public:
|
|
QString data() const;
|
|
QString title() const;
|
|
QString backgroud() const;
|
|
};
|
|
|
|
#endif // CQTDEPLOYERABOUT_H
|