11 /** Modela objetos desde donde fluye liquido */
12 class Source:public Control {
14 Source(const std::string &_name);
17 virtual bool get_output();
19 virtual void simulate();
20 float get_actual_flow() { return actual_flow; }
21 float get_max_flow() { return max_flow; }
22 void set_max_flow(float _f) { max_flow = _f; }
27 Source(const Source &):Control("null") {}
28 Source &operator = (const Source &) { return *this; }
33 #endif // _H_SOURCE_H_