We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 52b4f2b + 60011ea commit a0a9e91Copy full SHA for a0a9e91
2 files changed
FileFormats/Gff/Gff_Friendly.cpp
@@ -209,9 +209,11 @@ std::vector<GffStruct> const& GffList::GetStructs() const
209
return m_Structs;
210
}
211
212
+Gff::Gff() : m_TopLevelStruct()
213
+{ }
214
+
215
Gff::Gff(Raw::Gff const& rawGff) : m_TopLevelStruct(rawGff.m_Structs[0], rawGff)
-{
-}
216
217
218
GffStruct& Gff::GetTopLevelStruct()
219
{
FileFormats/Gff/Gff_Friendly.hpp
@@ -168,6 +168,7 @@ class GffList
168
class Gff
169
170
public:
171
+ Gff();
172
Gff(Raw::Gff const& rawGff);
173
174
GffStruct& GetTopLevelStruct();
0 commit comments