Interval: Added synthetic indicator to ::dump

This commit is contained in:
Paul Beckingham 2017-03-19 15:07:06 -04:00
parent e4daeb2078
commit 61b9667df8
2 changed files with 6 additions and 2 deletions

View file

@ -199,6 +199,9 @@ std::string Interval::dump () const
out << ' ' << quoteIfNeeded (tag); out << ' ' << quoteIfNeeded (tag);
} }
if (synthetic)
out << " synthetic";
return out.str (); return out.str ();
} }

View file

@ -48,8 +48,9 @@ public:
std::string dump () const; std::string dump () const;
public: public:
Range range {}; Range range {};
int id {0}; int id {0};
bool synthetic {false};
private: private:
std::set <std::string> _tags {}; std::set <std::string> _tags {};