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