From 3e44c208f67b87f17e086bb1361f4422fb6ac5ce Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Tue, 10 Jan 2017 18:39:14 -0200 Subject: Some class organization --- Project/Bus.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Project/Bus.h') diff --git a/Project/Bus.h b/Project/Bus.h index c7f66ef..2522be3 100644 --- a/Project/Bus.h +++ b/Project/Bus.h @@ -2,7 +2,7 @@ #define BUS_H #include "BusForm.h" -#include "Element.h" +#include "PowerElement.h" struct BusElectricalData { int number = 0; @@ -39,7 +39,7 @@ struct BusElectricalData { double stabFaultReactance = 0.0; }; -class Bus : public Element +class Bus : public PowerElement { public: Bus(); -- cgit