kwiqpagecache.h
来自「khtml在gtk上的移植版本」· C头文件 代码 · 共 29 行
H
29 行
#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 + =
减小字号Ctrl + -
显示快捷键?