5 using namespace PlaQui::Model;
7 Drainage::Drainage(const std::string &_name):Drain(_name),Control(_name)
19 void Drainage::update(int dir)
21 // El drenaje no tiene que actualizar
27 void Drainage::simulate()
30 std::cout << name << "::Flujo recibido = " << actual_flow << std::endl;
33 color_updated = false;
36 void Drainage::recieve_msg(int msg, IConector *who, void *data)
40 case MSG_QUERY_MAX_FLOW_OUT:
41 // FIXME Hacer INFINITO !!!
42 actual_flow = *((float *)data);
43 who->recieve_msg(MSG_RESPONSE_MAX_FLOW, this, &actual_flow);
47 Drain::recieve_msg(msg, who, data);