libptpmgmt
1.4
libptpmgmt library that provides the functionality of linuxptp pmc
|
#include <vecDef.h>
Public Member Functions | |
PtpSample_v () | |
PtpSample_v (size_t size) | |
PtpSample_v (size_t size, const PtpSample_t &value) | |
PtpSample_v (const PtpSample_v &container) | |
size_t | size () const |
bool | empty () const |
void | clear () |
void | push (const PtpSample_t &value) |
PtpSample_t | pop () |
void | pop_back () |
PtpSample_t | back () |
PtpSample_t | front () |
PtpSample_t & | get (size_t position) const |
void | set (size_t position, PtpSample_t &value) |
PtpSample_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<PtpSample_t> in scripts
PtpSample_v::PtpSample_v | ( | ) |
Initiate a new empty container
PtpSample_v::PtpSample_v | ( | size_t | size | ) |
Initiate a new container with size elements
[in] | size | of the new container |
PtpSample_v::PtpSample_v | ( | size_t | size, |
const PtpSample_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 |
PtpSample_v::PtpSample_v | ( | const PtpSample_v & | container | ) |
Copy constructor
[in] | container | to copy |
PtpSample_t PtpSample_v::back | ( | ) |
Get last element from container
size_t PtpSample_v::capacity | ( | ) | const |
Get current container capacity
void PtpSample_v::clear | ( | ) |
Remove all elements from container
bool PtpSample_v::empty | ( | ) | const |
Query if container is empty
PtpSample_t PtpSample_v::front | ( | ) |
Get first element from container
PtpSample_t& PtpSample_v::get | ( | size_t | position | ) | const |
Get element from the container
[in] | position | of element to get |
size_t PtpSample_v::max_size | ( | ) | const |
Get system limitation to container size
PtpSample_t& PtpSample_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 |
PtpSample_t PtpSample_v::pop | ( | ) |
Get last element and removes it from the container
void PtpSample_v::pop_back | ( | ) |
Removes last element from the container
void PtpSample_v::push | ( | const PtpSample_t & | value | ) |
Push a copy of element at the end of the container
[in] | value | to push |
void PtpSample_v::reserve | ( | size_t | new_cap | ) |
Reserve more space for further elements
void PtpSample_v::set | ( | size_t | position, |
PtpSample_t & | value | ||
) |
Replace element value in the container
[in] | position | of element to set |
[in] | value | element with new value |
size_t PtpSample_v::size | ( | ) | const |
Get the number of elements in container