diff options
Diffstat (limited to 'examples/triage/sections.h')
| -rw-r--r-- | examples/triage/sections.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/triage/sections.h b/examples/triage/sections.h index 09c9ea63..00285df8 100644 --- a/examples/triage/sections.h +++ b/examples/triage/sections.h @@ -4,21 +4,21 @@ #include "uitypes.h" -class SegmentsWidget: public QWidget +class SegmentsWidget : public QWidget { std::vector<SegmentRef> m_segments; -public: + public: SegmentsWidget(QWidget* parent, BinaryViewRef data); const std::vector<SegmentRef>& GetSegments() const { return m_segments; } }; -class SectionsWidget: public QWidget +class SectionsWidget : public QWidget { std::vector<SectionRef> m_sections; -public: + public: SectionsWidget(QWidget* parent, BinaryViewRef data); const std::vector<SectionRef>& GetSections() const { return m_sections; } }; |
