Zhao Yuhang
2023-12-13 59207cbc449e2e69e6b794115f8aeae168dba405
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 QStringLiteral("cocoa");
    }
 
    void CocoaWindowContext::virtual_hook(int id, void *data) {
    }
 
    bool CocoaWindowContext::setupHost() {
        return false;
    }
 
}