PLCnext API Documentation 24.0.0.71
|
This class implements an enumerator adapter for STL container based on iterators. More...
#include <Enumerator.hxx>
Public Member Functions | |
StlAdapter (Iterator begin, Iterator end) | |
Constructs an StlAdapter instance. More... | |
StlAdapter (const StlAdapter &arg)=default | |
Copy constructor. More... | |
StlAdapter & | operator= (const StlAdapter &arg)=default |
Assignment operator. More... | |
virtual | ~StlAdapter (void)=default |
Destructs this instance and frees all resources. | |
bool | MoveNext (void) override |
Moves this enumerator to the next position. More... | |
T | GetCurrent (void) override |
Gets the element at the current position. More... | |
virtual bool | MoveNext (void)=0 |
Moves this enumerator to the next position. More... | |
virtual T | GetCurrent (void)=0 |
Gets the element at the current position. More... | |
Additional Inherited Members | |
![]() | |
typedef std::shared_ptr< IEnumerator > | Ptr |
The smart pointer tpye of this interface. | |
![]() | |
IEnumerator (void)=default | |
Constructs an IEnumerator instance. | |
virtual | ~IEnumerator (void)=default |
Destructs this instance and frees all resources. | |
IEnumerator (const IEnumerator &arg)=default | |
Copies an IEnumerator instance. More... | |
IEnumerator & | operator= (const IEnumerator &arg)=default |
Assigns an IEnumerator instance. More... | |
This class implements an enumerator adapter for STL container based on iterators.
Iterator | The iterator type of the container. |
IteratorAdapter | The iterator type of the container. |
Use Enumerator<T>::CreateStlAdapter() to create an instance of this class.
|
inline |
Constructs an StlAdapter instance.
begin | The begin iterator of the container to enumerate. |
end | The end iterator of the container to enumerate. |
|
default |
Copy constructor.
arg | The argument to copy. |
|
inlineoverridevirtual |
Gets the element at the current position.
Depending an the template parameter type of this interface, a reference or even const reference might be returned.
Implements Arp::IEnumerator< T >.
|
inlineoverridevirtual |
Moves this enumerator to the next position.
false
if the end of the container/collections was reached and the enumerator was not moved, otherwise false
.See comments of interface declaration for more information about this operation.
Implements Arp::IEnumerator< T >.
|
default |
Assignment operator.
arg | The argument to copy. |