]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blob - Model/src/transporte.cpp
2bb21904c53dfdddda2e3a53448a0e198b5d122f
[z.facultad/75.42/plaqui.git] / Model / src / transporte.cpp
1
2 #include "transporte.h"
3
4 using namespace PlaQui;
5
6 Transporte::Transporte(const std::string &_name):ElementoPlanta(_name)
7 {
8         max_flow = actual_flow = 0.0f;
9 }
10
11 Transporte::~Transporte()
12 {
13 }
14