hfp_driver.h

来自「mini database hpfile implement」· C头文件 代码 · 共 31 行

H
31
字号
// -*- C++ -*-
#ifndef _HFP_DRIVER_H_
#define _HFP_DRIVER_H_

#include "test_driver.h"

class HfpDriver : public TestDriver
{
public:

    HfpDriver();
    ~HfpDriver();

    Status runTests();

private:
    int choice;

    int test1();
    int test2();
    int test3();
    int test4();
    int test5();
    int test6();

    Status runAllTests();
    const char* testName();
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?