You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppFlow/FlowApp/SystemChecker.h

47 lines
1.0 KiB
C

/**
*
* @file SystemChecker.h
* @brief
* @author libaojun (libaojunqd@foxmail.com)
* @date 2024-09-18
*
*/
#ifndef _SYSTEM_CHECKER____H___
#define _SYSTEM_CHECKER____H___
#include "FITK_Kernel/FITKAppFramework/FITKAbstractSysChecker.h"
/**
* @brief
* @author libaojun (libaojunqd@foxmail.com)
* @date 2024-09-18
*/
class SystemChecker : public AppFrame::FITKAbstractSysChecker
{
public:
/**
* @brief Construct a new System Checker object
* @author libaojun (libaojunqd@foxmail.com)
* @date 2024-09-18
*/
explicit SystemChecker() = default;
/**
* @brief Destroy the System Checker object
* @author libaojun (libaojunqd@foxmail.com)
* @date 2024-09-18
*/
virtual ~SystemChecker() = default;
/**
* @brief
* @return QStringList
* @author libaojun (libaojunqd@foxmail.com)
* @date 2024-09-18
*/
virtual QStringList check() override;
};
#endif