12 class Transport:public PlantItem {
14 Transport(const std::string &_name);
17 float get_actual_flow() { return actual_flow; }
18 float get_max_flow() { return max_flow; }
19 void set_max_flow(float _f) { max_flow = _f; }
21 // Es de solo lectura, no hay set
25 Transport():PlantItem("null") {}
26 Transport &operator = (const Transport &) { return (*this); }
31 #endif // _TRANSPORTE_H_