:orphan: .. index:: pair: struct; cfg_instance .. _doxid-structcfg__instance: struct cfg_instance =================== .. toctree:: :hidden: Overview ~~~~~~~~ Configurator object instance :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct cfg_instance { // fields struct cfg_instance* :ref:`father`; struct cfg_instance* :ref:`son`; struct cfg_instance* :ref:`brother`; struct cfg_instance* :ref:`bkp_next`; union :ref:`cfg_inst_val` :target:`val`; :ref:`cfg_handle` :ref:`handle`; char* :ref:`oid`; char :ref:`name`[CFG_INST_NAME_MAX]; :ref:`cfg_object`* :ref:`obj`; bool :ref:`added`; bool :ref:`remove`; }; .. _details-structcfg__instance: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Configurator object instance Fields ------ .. index:: pair: variable; father .. _doxid-structcfg__instance_1a0c0db505a9fe92c89c32e803ea869b77: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct cfg_instance* father Link to father .. index:: pair: variable; son .. _doxid-structcfg__instance_1a8d2211d17f09167e0e97b0fd16ae2cb1: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct cfg_instance* son Link to the first son .. index:: pair: variable; brother .. _doxid-structcfg__instance_1a32fd18fabb31e2c22c0a217f7bc4820b: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct cfg_instance* brother Link to the next brother .. index:: pair: variable; bkp_next .. _doxid-structcfg__instance_1aee09a101acf5530841b8ee658ea994be: .. ref-code-block:: cpp :class: doxyrest-title-code-block struct cfg_instance* bkp_next Pointer to the next instance in a list of instances to be restored from backup .. index:: pair: variable; handle .. _doxid-structcfg__instance_1ab6c1b611747aca2a8d85bc6c4a60cede: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`cfg_handle` handle Handle of the instance .. index:: pair: variable; oid .. _doxid-structcfg__instance_1ad1aba71adf477fa4809bef40a13d0d71: .. ref-code-block:: cpp :class: doxyrest-title-code-block char* oid OID of the instance .. index:: pair: variable; name .. _doxid-structcfg__instance_1aae23f27f0b7dcf396108064cbca35027: .. ref-code-block:: cpp :class: doxyrest-title-code-block char name[CFG_INST_NAME_MAX] Own name of the instance .. index:: pair: variable; obj .. _doxid-structcfg__instance_1ac6e1e26f4a0ba464c08aae352ed9f921: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`cfg_object`* obj Object of the instance .. index:: pair: variable; added .. _doxid-structcfg__instance_1ae52b246bc47ca46dbd3d6b9de7728be2: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool added Whether this instance was added to the Test Agent or not (has sense only for read-create instances) .. index:: pair: variable; remove .. _doxid-structcfg__instance_1acd91932551b3dae72415ef20c021071a: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool remove Whether this instance should be removed from TA when committing changes