#include "drainage.h"
#include "iconector.h"
#include "libxml/parser.h"
+#include "not.h"
+#include "or.h"
+#include "and.h"
namespace PlaQui {
namespace Model {
std::list<Tank *> tank_lst;
std::list<Drainage *> drainage_lst;
std::list<Exclusa *> exclusa_lst;
+ std::list<LogicControl *> control_lst;
// Tambien tengo una lista generica!
std::list<PlantItem *> items;
// Utilidades
IConector *find(const std::string &name);
+ LogicControl *find_logic(const std::string &name);
// Conecta todos los items desde el XML
void do_connections(xmlNodePtr nodo);
+ void do_logic_connetions(xmlNodePtr nodo);
+ void connect_logic(LogicControl *current, xmlNodePtr);
// Carga del XML
void loadBomba(xmlNodePtr nodo);
void loadTank(xmlNodePtr nodo);
void loadUnion(xmlNodePtr nodo);
void loadDrain(xmlNodePtr nodo);
+ void loadNot(xmlNodePtr nodo);
+ void loadOr(xmlNodePtr nodo);
+ void loadAnd(xmlNodePtr nodo);
RGB loadRGB(xmlNodePtr nodo);