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.
82 lines
2.0 KiB
C++
82 lines
2.0 KiB
C++
/**
|
|
*
|
|
* @file FITKCommandLineHandler.h
|
|
* @brief 命令行处理器声明
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*
|
|
*/
|
|
#ifndef __FITKCOMMANDLINE_HANDLER_H___
|
|
#define __FITKCOMMANDLINE_HANDLER_H___
|
|
|
|
#include "FITKAppFrameworkAPI.h"
|
|
#include <QStringList>
|
|
|
|
namespace AppFrame
|
|
{
|
|
/**
|
|
* @brief 命令行处理器
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
class FITKAppFrameworkAPI FITKCommandLineHandler
|
|
{
|
|
public:
|
|
/**
|
|
* @brief Construct a new FITKCommandLineHandler object
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
explicit FITKCommandLineHandler();
|
|
/**
|
|
* @brief Destroy the FITKCommandLineHandler object
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
virtual ~FITKCommandLineHandler() = default;
|
|
/**
|
|
* @brief 执行处理命令行命令
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
virtual void exec();
|
|
/**
|
|
* @brief 是否无gui运行
|
|
* @return true
|
|
* @return false
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
virtual bool isNoGUI();
|
|
/**
|
|
* @brief 获取第index个参数
|
|
* @param[i] index 索引
|
|
* @return QString
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
QString argValue(const int index);
|
|
/**
|
|
* @brief 是否包含变量
|
|
* @param[i] v 变量名称
|
|
* @return true
|
|
* @return false
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
bool containsValue(QString v);
|
|
|
|
protected:
|
|
/**
|
|
* @brief 全部命令行参数
|
|
* @author LiBaojun (libaojunqd@foxmail.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
QStringList _args{};
|
|
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|