1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| #include "cocoawindowcontext_p.h"
|
| namespace QWK {
|
| CocoaWindowContext::CocoaWindowContext() {
| }
|
| CocoaWindowContext::~CocoaWindowContext() {
| }
|
| QString CocoaWindowContext::key() const {
| return "cocoa";
| }
|
| void CocoaWindowContext::virtual_hook(int id, void *data) {
| }
|
| bool CocoaWindowContext::setupHost() {
| return false;
| }
|
| }
|
|