COMPASSi/trunk/code/inc/Application/StructureUIFunction.h

28 lines
919 B
C
Raw Normal View History

2025-06-25 15:06:42 +08:00
#ifndef StructureUIFunction_H
#define StructureUIFunction_H
#include <QString>
#include <QMap>
#include <QObject>
#include "UIFunctionBase.h"
class StructureUIFunction:public UIFunctionBase
{
public:
StructureUIFunction();
~StructureUIFunction();
void structure_create_section(const QString &message);
void structure_create_cal(const QString &message);
void structure_cal(const QString &message);
void structure_delete_cal(const QString &message);
void structure_section_editor(const QString &message);
void structure_scantlings_editor(const QString &message);
void structure_strength_editor(const QString &message);
void structure_twbg_editor(const QString &message);
void structure_patp_editor(const QString &message);
void structure_zcmt_editor(const QString &message);
void structure_cprt_editor(const QString &message);
};
#endif // StructureUIFunction_H