mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-16 04:40:08 +01:00
Bugfix and cleanup Info on source in UI
This commit is contained in:
@@ -10,8 +10,11 @@ class InfoVisitor : public Visitor
|
||||
uint64_t current_id_;
|
||||
|
||||
public:
|
||||
InfoVisitor(bool brief = true);
|
||||
inline std::string str() const { return information_; }
|
||||
InfoVisitor();
|
||||
inline void setBriefStringMode () { brief_ = true; current_id_ = 0; }
|
||||
inline void setExtendedStringMode () { brief_ = false; current_id_ = 0; }
|
||||
inline void reset () { current_id_ = 0; }
|
||||
inline std::string str () const { return information_; }
|
||||
|
||||
// Elements of Scene
|
||||
void visit (Scene& n) override;
|
||||
|
||||
Reference in New Issue
Block a user