12345678910111213141516171819202122232425262728 |
- #include "ToolDialog.h"
- ToolDialogImpl::ToolDialogImpl(QWidget *parent)
- : DllToolDialog(parent)
- {
- ui.setupUi(this);
- m_Value = 0;
- m_Value2 = 20;
- m_Value3 = 0;
- }
- ToolDialogImpl::~ToolDialogImpl()
- {
- }
- int ToolDialogImpl::Execute()
- {
- m_Value3 = m_Value + m_Value2;
- return 0;
- }
- void ToolDialogImpl::Running(bool bRun)
- {
- }
|