mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added some missing types to the ValueTree::Iterator class
This commit is contained in:
parent
0a3da44f07
commit
5a6f33b987
1 changed files with 6 additions and 0 deletions
|
|
@ -394,6 +394,12 @@ public:
|
|||
bool operator!= (const Iterator&) const noexcept;
|
||||
ValueTree operator*() const;
|
||||
|
||||
using difference_type = std::ptrdiff_t;
|
||||
using value_type = ValueTree;
|
||||
using reference = ValueTree&;
|
||||
using pointer = ValueTree*;
|
||||
using iterator_category = std::forward_iterator_tag;
|
||||
|
||||
private:
|
||||
void* internal;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue