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/CommandLineHandler.h

48 lines
1005 B
C

/**
*
* @file ComamdLineHandler.h
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-04-06
*
*/
#ifndef __COMMANDLINEHANDLER_H__
#define __COMMANDLINEHANDLER_H__
#include "FITK_Kernel/FITKAppFramework/FITKCommandLineHandler.h"
/**
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-04-06
*/
class CommandLineHandler : public AppFrame::FITKCommandLineHandler
{
public:
/**
* @brief Construct a new Command Line Handler object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-04-06
*/
explicit CommandLineHandler() = default;
/**
* @brief Destroy the Command Line Handler object
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-04-06
*/
virtual ~CommandLineHandler() = default;
/**
* @brief
* @author LiBaojun (libaojunqd@foxmail.com)
* @date 2024-04-06
*/
void exec() override;
private:
};
#endif