diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 18:39:14 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-01-10 18:39:14 -0200 |
commit | 3e44c208f67b87f17e086bb1361f4422fb6ac5ce (patch) | |
tree | 136a89491eec953644e89f58f626d2de99f99500 /Project/Bus.h | |
parent | 58148f1ebe5be64231965ca76ae13e4690528e55 (diff) | |
download | PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.tar.gz PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.tar.xz PSP.git-3e44c208f67b87f17e086bb1361f4422fb6ac5ce.zip |
Some class organization
Diffstat (limited to 'Project/Bus.h')
-rw-r--r-- | Project/Bus.h | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |