2,新增“Apps”; 3,新增“Common”; 4,新增“FileList”; 5,新增“MediaX”; 6,新增“OpenSource”; 7,新增“Samples”; 8,新增“SoftwareBusinessLines”.
23 lines
369 B
C++
23 lines
369 B
C++
#ifndef ALGORITHMPARAMSPANEL_H
|
|
#define ALGORITHMPARAMSPANEL_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class AlgorithmParamsPanel;
|
|
}
|
|
|
|
class AlgorithmParamsPanel : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AlgorithmParamsPanel(QWidget *parent = nullptr);
|
|
~AlgorithmParamsPanel();
|
|
|
|
private:
|
|
Ui::AlgorithmParamsPanel *ui;
|
|
};
|
|
|
|
#endif // ALGORITHMPARAMSPANEL_H
|