diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-17 17:27:49 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-17 17:27:49 -0200 |
commit | c4f6b784f575b19506d3207d3f8fbf9496db5b43 (patch) | |
tree | dc50b6b50c81570727ca8810240505630513cf26 /Project/Element.h | |
parent | d60de5e4c4774c5b840c5cab2cb629a5bbe9df42 (diff) | |
download | PSP.git-c4f6b784f575b19506d3207d3f8fbf9496db5b43.tar.gz PSP.git-c4f6b784f575b19506d3207d3f8fbf9496db5b43.tar.xz PSP.git-c4f6b784f575b19506d3207d3f8fbf9496db5b43.zip |
Transformer form under implementation
Diffstat (limited to 'Project/Element.h')
-rw-r--r-- | Project/Element.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Project/Element.h b/Project/Element.h index 0806947..17a8902 100644 --- a/Project/Element.h +++ b/Project/Element.h @@ -81,7 +81,7 @@ struct SwitchingData { std::vector<SwitchingType> swType; std::vector<double> swTime; -}; +}; class Element { @@ -182,7 +182,7 @@ class Element bool IntFromString(wxWindow* parent, wxString strValue, int& value, wxString errorMsg); //Electrical only methods - virtual void SetNominalVoltage(double nominalVoltage, ElectricalUnit nominalVoltageUnit) {} + virtual void SetNominalVoltage(std::vector<double> nominalVoltage, std::vector<ElectricalUnit> nominalVoltageUnit) {} virtual void SetSwitchingData(SwitchingData data) { m_swData = data; } virtual SwitchingData GetSwitchingData() { return m_swData; } |