Interface for any container of ID numbers. More...
#include <dcfg_api.H>
Public Member Functions | |
virtual void | add_id (DCFG_ID id)=0 |
Add one ID to the container. | |
Interface for any container of ID numbers.
The API programmer is free to define and use any class that implements this interface to collect ID numbers (process IDs, basic blocks, etc.) from the relevant DCFG APIs.
|
pure virtual |
Add one ID to the container.
All concrete implementations must define this method.
[in] | id | ID to add. |
Implemented in dcfg_api::DCFG_ID_SET, and dcfg_api::DCFG_ID_VECTOR.