|
libptpmgmt 2.0
libptpmgmt library that provides the functionality of linuxptp pmc
|
#include <vecDef.h>
Public Member Functions | |
| ClockIdentity_v () | |
| ClockIdentity_v (size_t size) | |
| ClockIdentity_v (size_t size, const ClockIdentity_t &value) | |
| ClockIdentity_v (const ClockIdentity_v &container) | |
| size_t | size () const |
| bool | empty () const |
| void | clear () |
| void | push (const ClockIdentity_t &value) |
| ClockIdentity_t | pop () |
| void | pop_back () |
| ClockIdentity_t | back () |
| ClockIdentity_t | front () |
| ClockIdentity_t & | get (size_t position) const |
| void | set (size_t position, ClockIdentity_t &value) |
| ClockIdentity_t & | operator[] (size_t position) |
| size_t | capacity () const |
| void | reserve (size_t new_cap) |
| size_t | max_size () const |
class to handle std::vector<ClockIdentity_t> in scripts
| ClockIdentity_v::ClockIdentity_v | ( | ) |
Initiate a new empty container
| ClockIdentity_v::ClockIdentity_v | ( | size_t | size | ) |
Initiate a new container with size elements
| [in] | size | of the new container |
| ClockIdentity_v::ClockIdentity_v | ( | size_t | size, |
| const ClockIdentity_t & | value | ||
| ) |
Initiate a new container with size elements and copy value to all elements
| [in] | size | of the new container |
| [in] | value | for all elements in new container |
| ClockIdentity_v::ClockIdentity_v | ( | const ClockIdentity_v & | container | ) |
Copy constructor
| [in] | container | to copy |
| ClockIdentity_t ClockIdentity_v::back | ( | ) |
Get last element from container
| size_t ClockIdentity_v::capacity | ( | ) | const |
Get current container capacity
| void ClockIdentity_v::clear | ( | ) |
Remove all elements from container
| bool ClockIdentity_v::empty | ( | ) | const |
Query if container is empty
| ClockIdentity_t ClockIdentity_v::front | ( | ) |
Get first element from container
| ClockIdentity_t & ClockIdentity_v::get | ( | size_t | position | ) | const |
Get element from the container
| [in] | position | of element to get |
| size_t ClockIdentity_v::max_size | ( | ) | const |
Get system limitation to container size
| ClockIdentity_t & ClockIdentity_v::operator[] | ( | size_t | position | ) |
Fetch an element from the container The operator can be used for retrieving and setting!
| [in] | position | of the element |
| ClockIdentity_t ClockIdentity_v::pop | ( | ) |
Get last element and removes it from the container
| void ClockIdentity_v::pop_back | ( | ) |
Removes last element from the container
| void ClockIdentity_v::push | ( | const ClockIdentity_t & | value | ) |
Push a copy of element at the end of the container
| [in] | value | to push |
| void ClockIdentity_v::reserve | ( | size_t | new_cap | ) |
Reserve more space for further elements
| void ClockIdentity_v::set | ( | size_t | position, |
| ClockIdentity_t & | value | ||
| ) |
Replace element value in the container
| [in] | position | of element to set |
| [in] | value | element with new value |
| size_t ClockIdentity_v::size | ( | ) | const |
Get the number of elements in container