#define _LOGIC_CONTROL_H_
#include "iconector.h"
+#include <string>
namespace PlaQui {
namespace Model {
* \see Exclusa::update
*/
bool is_operational() { return (in_list.begin() != in_list.end()); }
+
+ void set_name(const std::string &_name) { name = _name; }
+ std::string get_name() { return name; }
+protected:
+ std::string name;
};
}