28 lines
919 B
C++
28 lines
919 B
C++
#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
|