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.

59 lines
1.6 KiB
C

/**********************************************************************
* @file CommandLineHandler.h
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*********************************************************************/
#ifndef _CommandLineHandler_H_
#define _CommandLineHandler_H_
#include "FITK_Kernel/FITKAppFramework/FITKCommandLineHandler.h"
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
class CommandLineHandler : public AppFrame::FITKCommandLineHandler
{
public:
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
explicit CommandLineHandler() = default;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
virtual ~CommandLineHandler() = default;
/**
* @brief
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
void exec() override;
private:
/**
* @brief VTK
* @param[i] index
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
void importVTK(const int index);
/**
* @brief
* @param[i] path
* @param[i] fileType
* @return QString
* @author BaGuijun (baguijun@163.com)
* @date 2024-09-11
*/
QString getFilesToPath(QString path, QString fileType);
};
#endif