23 lines
436 B
C
23 lines
436 B
C
|
#ifndef WELCOMEPANEL_H
|
||
|
#define WELCOMEPANEL_H
|
||
|
|
||
|
#include "DocsManager.h"
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Components {
|
||
|
|
||
|
class WelcomePanel : public QWidget, public MakeTools::PresentBase {
|
||
|
public:
|
||
|
WelcomePanel();
|
||
|
|
||
|
// ContentPresent interface
|
||
|
public:
|
||
|
virtual QWidget *widget() const override;
|
||
|
virtual QString name() const override;
|
||
|
};
|
||
|
|
||
|
} // namespace Components
|
||
|
|
||
|
#endif // WELCOMEPANEL_H
|