6 #include "elementoplanta.h"
10 class Transporte:public ElementoPlanta {
12 Transporte(const std::string &_name);
13 virtual ~Transporte();
15 float get_actual_flow() { return actual_flow; }
16 float get_max_flow() { return max_flow; }
17 void set_max_flow(float _f) { max_flow = _f; }
19 // Es de solo lectura, no hay set
23 Transporte():ElementoPlanta("null") {}
24 Transporte &operator = (const Transporte &) { return (*this); }
28 #endif // _TRANSPORTE_H_