]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Model/src/drainage.cpp
* Se agrega directorio para ejemplos con el primer ejemplo exitoso. (traten de poner...
[z.facultad/75.42/plaqui.git] / Model / src / drainage.cpp
index d421662330a541a834e9e86f4e42e7adf18b0b83..22b57b0bb5f942237111c1368c89ca48e5f12226 100644 (file)
@@ -8,7 +8,6 @@ Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name)
 {
        in_slots = 1;
        out_slots = 0;
 {
        in_slots = 1;
        out_slots = 0;
-       // FIXME hacer INFINITO!
        capacity = INFINITO;
        actual_flow = 0.0f;
 }
        capacity = INFINITO;
        actual_flow = 0.0f;
 }
@@ -41,8 +40,7 @@ void Drainage::recieve_msg(int msg, IConector *who, void *data)
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
                case MSG_QUERY_MAX_FLOW_OUT:
                        // FIXME Hacer INFINITO !!!
                        actual_flow = *((float *)data);
-                       tmp = INFINITO;
-                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &tmp);
+                       who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
                        updated = true;
                break;
                default:
                        updated = true;
                break;
                default: