X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/f031c89fa8a00ea12ff7290569ec507f44402458..cabbbca66d9966213bb6e207046a605b5d0b7332:/Model/include/drain.h diff --git a/Model/include/drain.h b/Model/include/drain.h index 25f75d8..34958a4 100644 --- a/Model/include/drain.h +++ b/Model/include/drain.h @@ -20,14 +20,11 @@ public: virtual void simulate(); /// Retorna el flujo que entrega actualmente - float get_actual_flow() { return actual_flow; } - /// Retorna el flujo máximo capaz de entregar float get_capacity() { return capacity; } /// Asigna el flojo máximo capaz de entregar virtual void set_capacity(float _f) { capacity = _f; } protected: float capacity; - float actual_flow; private: Drain(const Drain &):Control("null") {} Drain &operator = (const Drain &) { return *this; } @@ -35,5 +32,6 @@ private: } } + #endif // _H_SOURCE_H_