Alternate e697dbe9c5997e35395fe158628dd8c5209481da
for Visual Studio 2022 and Windows 11.
読み取り中…
検索中…
一致する文字列を見つけられません
FilePerformanceCheck.h
[詳解]
1
5
6#pragma once
7
8#include "PerformanceCheck.h"
9#include "Console.h"
10#include "QueryPerformance.h"
11#include "File.h"
12
13namespace PerfCheck
14{
18 {
19 public:
21 virtual ~FilePerformanceCheck ();
22
23 virtual BOOL DoAction ();
24
25 protected:
26 virtual BOOL Core (const int param1);
27 virtual BOOL Core1 (const int param1);
28 virtual BOOL Core2 (const int param1);
29
31 };
32}
コンソールに関するWindowsAPIを集約したクラス
ファイルIOに関するWindowsAPIを集約したクラス
性能測定用
高分解能時間計測に関するWindowsAPIを集約したクラス
Fileクラス性能測定用
virtual BOOL Core(const int param1)
virtual BOOL DoAction()
処理開始
virtual BOOL Core2(const int param1)
virtual BOOL Core1(const int param1)
コンソールに関するクラス
Definition: Console.h:88