mirror of
https://github.com/mcneel/opennurbs.git
synced 2026-03-23 10:41:06 +08:00
Sync changes from upstream repository
This commit is contained in:
@@ -380,6 +380,14 @@ public:
|
||||
*/
|
||||
void SetArray(T*, int, int);
|
||||
|
||||
/* Support range based for loops */
|
||||
T* begin();
|
||||
T* end();
|
||||
T const* cbegin();
|
||||
T* cend();
|
||||
T const* begin() const;
|
||||
T const* end() const;
|
||||
|
||||
protected:
|
||||
// implementation //////////////////////////////////////////////////////
|
||||
void Move( int /* dest index*/, int /* src index */, int /* element count*/ );
|
||||
@@ -733,6 +741,14 @@ public:
|
||||
*/
|
||||
void SetArray(T*, int, int);
|
||||
|
||||
/* Support range based for loops */
|
||||
T* begin();
|
||||
T* end();
|
||||
T const* cbegin();
|
||||
T* cend();
|
||||
T const* begin() const;
|
||||
T const* end() const;
|
||||
|
||||
protected:
|
||||
// implementation //////////////////////////////////////////////////////
|
||||
void Move( int /* dest index*/, int /* src index */, int /* element count*/ );
|
||||
|
||||
Reference in New Issue
Block a user