📄 kwiqpagecache.h
字号:
#ifndef KWIQPageCache_h#define KWIQPageCache_hclass KWQPageState;// interface for core class KWQPageState so component library can// destroy the objects Actual object will be inside the core.class KWIQPageState{ public: virtual ~KWIQPageState() {}; };// interface for component library so core can obtain objects// actually more sort of a KWIQPageCacheEntry, but// actual object will be inside component libraryclass KWIQPageCache{public: virtual ~KWIQPageCache(){}; virtual KWIQPageState* state() =0;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -