You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-03 23:50:33 +02:00
22 lines
208 B
C
22 lines
208 B
C
![]() |
#ifndef WINDOW_H
|
||
|
#define WINDOW_H
|
||
|
|
||
|
#include <stable.h>
|
||
|
|
||
|
namespace jop {
|
||
|
|
||
|
class Window : public QQuickView {
|
||
|
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
Window();
|
||
|
void showPage(const QString& pageName);
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // WINDOW_H
|