nodetable: correctly update with time
This commit is contained in:
+9
-2
@@ -108,14 +108,21 @@ public:
|
||||
|
||||
using const_iterator = QHash<QString, NodeValueTable>::const_iterator;
|
||||
|
||||
inline QHash<QString, NodeValueTable>::const_iterator begin() const {
|
||||
inline QHash<QString, NodeValueTable>::const_iterator begin() const
|
||||
{
|
||||
return tables_.cbegin();
|
||||
}
|
||||
|
||||
inline QHash<QString, NodeValueTable>::const_iterator end() const {
|
||||
inline QHash<QString, NodeValueTable>::const_iterator end() const
|
||||
{
|
||||
return tables_.cend();
|
||||
}
|
||||
|
||||
inline bool contains(const QString& s) const
|
||||
{
|
||||
return tables_.contains(s);
|
||||
}
|
||||
|
||||
private:
|
||||
QHash<QString, NodeValueTable> tables_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user