diskcache_win32.h
来自「本人收集整理的一份c/c++跨平台网络库」· C头文件 代码 · 共 29 行
H
29 行
//// DiskCacheWin32.h// Macshroom//// Created by Moishe Lettvin on 11/7/06.// Copyright (C) 2006 Google Inc. All rights reserved.////#ifndef UTILS_BASE_DISKCACHEWIN32_H_#define UTILS_BASE_DISKCACHEWIN32_H_#include "diskcache.h"namespace utils_base {class DiskCacheWin32 : public DiskCache { protected: virtual bool InitializeEntries(); virtual bool PurgeFiles(); virtual bool FileExists(const std::string& filename) const; virtual bool DeleteFile(const std::string& filename) const;};}#endif // UTILS_BASE_DISKCACHEWIN32_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?