2023-02-14 02:55:44 +00:00
|
|
|
#ifndef __BLOCKDEFINITION__H__
|
|
|
|
#define __BLOCKDEFINITION__H__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class AMFArrayValue;
|
|
|
|
|
|
|
|
class BlockDefinition {
|
|
|
|
public:
|
2024-02-18 06:38:26 +00:00
|
|
|
BlockDefinition(const std::string& defaultValue = "", const float minimumValue = 0.0f, const float maximumValue = 0.0f);
|
2023-02-14 02:55:44 +00:00
|
|
|
static BlockDefinition blockDefinitionDefault;
|
|
|
|
|
2024-02-18 06:38:26 +00:00
|
|
|
[[nodiscard]] const std::string& GetDefaultValue() const { return m_DefaultValue; }
|
|
|
|
[[nodiscard]] float GetMinimumValue() const noexcept { return m_MinimumValue; }
|
|
|
|
[[nodiscard]] float GetMaximumValue() const noexcept { return m_MaximumValue; }
|
|
|
|
void SetDefaultValue(const std::string& value) { m_DefaultValue = value; }
|
|
|
|
void SetMinimumValue(const float value) noexcept { m_MinimumValue = value; }
|
|
|
|
void SetMaximumValue(const float value) noexcept { m_MaximumValue = value; }
|
|
|
|
|
2023-02-14 02:55:44 +00:00
|
|
|
private:
|
2024-02-18 06:38:26 +00:00
|
|
|
std::string m_DefaultValue;
|
|
|
|
float m_MinimumValue;
|
|
|
|
float m_MaximumValue;
|
2023-02-14 02:55:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__BLOCKDEFINITION__H__
|