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.
24 lines
522 B
C++
24 lines
522 B
C++
#ifndef __OPER_LICENSE_H___
|
|
#define __OPER_LICENSE_H___
|
|
|
|
#include "FITK_Kernel/FITKCore/FITKActionOperator.h"
|
|
#include "FITK_Kernel/FITKCore/FITKOperatorRepo.h"
|
|
|
|
namespace ModelOper
|
|
{
|
|
class OperatorsLicense : public Core::FITKActionOperator
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
explicit OperatorsLicense() = default;
|
|
virtual ~OperatorsLicense() = default;
|
|
protected:
|
|
bool execGUI() override;
|
|
private:
|
|
};
|
|
Register2FITKOPeratorRepo(actionLicense, OperatorsLicense);
|
|
}
|
|
|
|
|
|
#endif
|