SineStriker
2023-12-01 0d31eda795a5bbfd62f070b54f2409761a0eb87f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef WIN32WINDOWCONTEXT_P_H
#define WIN32WINDOWCONTEXT_P_H
 
#include <QWKCore/private/abstractwindowcontext_p.h>
 
namespace QWK {
 
    class QWK_CORE_EXPORT Win32WindowContext : public AbstractWindowContext {
        Q_OBJECT
    public:
        Win32WindowContext(QWindow *window, WindowItemDelegate *delegate);
        ~Win32WindowContext();
    };
 
}
 
#endif // WIN32WINDOWCONTEXT_P_H