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();
23 Source(const Source &):Control("null") {}
24 Source &operator = (const Source &) { return *this; }
29 #endif // _H_SOURCE_H_