Struct DataSet::Variable# Defined in File DataSet.h Nested Relationships# This struct is a nested type of Template Class DataSet. Struct Documentation# struct Variable# Header description. Variable represents an entity attribute and stores its name, maximal and minimal value. Public Functions inline Variable(T min_, T max_, const std::string &name_, const std::string &unit_ = "")# Creates a Variable with the given name, min and max value. Parameters: min – the min value max – the max value name – the name Public Members T min# Minimal value T max# Maximal value std::string name# Variable name std::string unit# Unit of the Variables values