An ordered collection of annotation blocks identified by name or index.
More...
#include <iexpression.h>
|
| using | Self = Interface_declare< id1, ... > |
| | Own type. More...
|
| |
| using | IID = Uuid_t< id1, ... > |
| | Declares the interface ID (IID) of this interface. More...
|
| |
| using | IID = Uuid_t<0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0> |
| | Declares the interface ID (IID) of this interface. More...
|
| |
| static bool | compare_iid (const Uuid &iid) |
| | Compares the interface ID iid against the interface ID of this interface and of its ancestors. More...
|
| |
| static bool | compare_iid (const Uuid &iid) |
| | Compares the interface ID iid against the interface ID of this interface. More...
|
| |
An ordered collection of annotation blocks identified by name or index.
Annotation lists can be created with mi::neuraylib::IExpression_factory::create_annotation_list().
◆ add_annotation_block()
| virtual Sint32 mi::neuraylib::IAnnotation_list::add_annotation_block |
( |
const char * |
name, |
|
|
const IAnnotation_block * |
block |
|
) |
| |
|
pure virtual |
Adds an annotation block at the end of the list.
- Returns
- 0: Success.
- -1: Invalid parameter (
nullptr).
- -2: There is already an annotation block mapped to
name in the list.
◆ get_annotation_block() [1/2]
| virtual const IAnnotation_block * mi::neuraylib::IAnnotation_list::get_annotation_block |
( |
const char * |
name | ) |
const |
|
pure virtual |
Returns the annotation block for name, or nullptr if there is no such block.
◆ get_annotation_block() [2/2]
| virtual const IAnnotation_block * mi::neuraylib::IAnnotation_list::get_annotation_block |
( |
Size |
index | ) |
const |
|
pure virtual |
Returns the annotation block for index, or nullptr if there is no such block.
◆ get_index()
| virtual Size mi::neuraylib::IAnnotation_list::get_index |
( |
const char * |
name | ) |
const |
|
pure virtual |
Returns the index for the given name, or -1 if there is no such block.
◆ get_name()
| virtual const char * mi::neuraylib::IAnnotation_list::get_name |
( |
Size |
index | ) |
const |
|
pure virtual |
Returns the name for the given index, or nullptr if there is no such block.
◆ get_size()
| virtual Size mi::neuraylib::IAnnotation_list::get_size |
( |
| ) |
const |
|
pure virtual |
Returns the number of elements.
◆ set_annotation_block() [1/2]
| virtual Sint32 mi::neuraylib::IAnnotation_list::set_annotation_block |
( |
const char * |
name, |
|
|
const IAnnotation_block * |
block |
|
) |
| |
|
pure virtual |
Sets an annotation block identified by name.
- Returns
- 0: Success.
- -1: Invalid parameter (
nullptr).
- -2: There is no annotation block mapped to
name in the list.
◆ set_annotation_block() [2/2]
Sets an annotation block at a given index.
- Returns
- 0: Success.
- -1: Invalid parameter (
nullptr).
- -2:
index is out of bounds.