23 lines
369 B
C
23 lines
369 B
C
|
|
/*
|
|||
|
|
* 说明:考试车对象接口
|
|||
|
|
*
|
|||
|
|
* 作者: 杨海洋
|
|||
|
|
* 日期: 2023-03-20
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#ifndef IEXAMCAR_H
|
|||
|
|
#define IEXAMCAR_H
|
|||
|
|
|
|||
|
|
#include "IExamInterface.h"
|
|||
|
|
#include "IExamCarAbstract.h"
|
|||
|
|
|
|||
|
|
class JUDGE_API IExamCar : public IExamInterface, public IExamCarAbstract
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
explicit IExamCar() = default;
|
|||
|
|
virtual ~IExamCar() = default;
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
#endif // IEXAMCAR_H
|