summaryrefslogtreecommitdiff
path: root/examples/triage/sections.h
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2022-01-27 22:43:28 -0500
committerKyleMiles <krm504@nyu.edu>2022-01-28 00:24:06 -0500
commit6812c973c9fa9b4ad642ab81856c05f87bd6fcc4 (patch)
treedace4156d03148bcaf02df138ab4e0d93e61bc6f /examples/triage/sections.h
parent519c9db22367f2659d1a54599fab47e6313be06e (diff)
Format All Files
Diffstat (limited to 'examples/triage/sections.h')
-rw-r--r--examples/triage/sections.h8
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; }
};