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.
|
#pragma once
|
|
|
|
class QWidget;
|
|
|
|
// 使用PEBI自带算例生成网格、计算压力并导出结果。
|
|
class nmPebiExampleCalculator
|
|
{
|
|
public:
|
|
explicit nmPebiExampleCalculator(QWidget* pParent = 0);
|
|
|
|
// 显示模型选择对话框并执行所选算例。
|
|
void run();
|
|
|
|
private:
|
|
QWidget* m_pParent;
|
|
};
|