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.
46 lines
936 B
C++
46 lines
936 B
C++
/**
|
|
*
|
|
* @file CFDPostAPPSettings.h
|
|
* @brief 软件设置
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-04-06
|
|
*
|
|
*/
|
|
#ifndef __STRUCTURAL_SETTINGS_H__
|
|
#define __STRUCTURAL_SETTINGS_H__
|
|
|
|
#include "FITK_Kernel/FITKAppFramework/FITKAppSettings.h"
|
|
|
|
/**
|
|
* @brief 软件设置
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
class CFDPostAPPSettings : public AppFrame::FITKAppSettings
|
|
{
|
|
public:
|
|
/**
|
|
* @brief Construct a new Structural Settings object
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
explicit CFDPostAPPSettings() = default;
|
|
/**
|
|
* @brief Destroy the Structural Settings object
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
virtual ~CFDPostAPPSettings() = default;
|
|
/**
|
|
* @brief 读取ini文件
|
|
* @author BaGuijun (baguijun@163.com)
|
|
* @date 2024-04-06
|
|
*/
|
|
void read() override;
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif
|