]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/include/source.h
- Se corrige la bomba para que tenga mas informacion sobre el flujo maximo y
[z.facultad/75.42/plaqui.git] / Model / include / source.h
1
2 #ifndef _H_SOURCE_H_
3 #define _H_SOURCE_H_
4
5 #include "control.h"
6
7 namespace PlaQui {
8
9 namespace Model {
10
11 /** Modela objetos desde donde fluye liquido */
12 class Source:public Control {
13 public:
14         Source(const std::string &_name);
15         virtual ~Source();
16
17         virtual bool get_output();
18
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; }
23 protected:
24         float max_flow;
25         float actual_flow;
26 private:
27         Source(const Source &):Control("null") {}
28         Source &operator = (const Source &) { return *this; }
29 };
30
31 }
32 }
33 #endif // _H_SOURCE_H_
34