From 3c817f09e1bfcfea4041758ba54d06139d796d3d Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Wed, 28 Mar 2018 01:43:30 -0300 Subject: Bus graphics data imported --- Project/ImportForm.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Project/ImportForm.h') diff --git a/Project/ImportForm.h b/Project/ImportForm.h index a1925de..11357cf 100644 --- a/Project/ImportForm.h +++ b/Project/ImportForm.h @@ -88,6 +88,8 @@ class ParseAnarede ParseAnarede(wxFileName lstFile, wxFileName pwfFile); ~ParseAnarede() {} bool Parse(); + std::vector GetComponents() const { return m_components; } + std::vector GetLines() const { return m_lines; } protected: bool GetLenghtAndRotationFromBusCode(wxString code, double& lenght, int& rotationID); @@ -98,6 +100,7 @@ class ParseAnarede std::vector m_components; std::vector m_lines; + }; #endif // IMPORTFORM_H -- cgit