11 /** Elementos que pueden ser automatizados */
12 class Control:public PlantItem {
14 Control(const std::string &_name);
17 virtual bool get_output() = 0;
24 Control(const Control &):PlantItem("null") {}
25 Control &operator = (const Control &) { return (*this); }