Toolkit Tutorial: Programming
dt_Handle
molecule1
,
moleculeX
;
molecule1
=
dt_next
(
container
);
if
(
dt_getrole
(
molecule1
,
reaction
)
==
DX_ROLE_REACTANT
)
printf
(
"The molecule role is reactant.\n"
);
moleculeX
=
dt_next
(
container
);
if
(
dt_getrole
(
moleculeX
,
reaction
)
==
DX_ROLE_PRODUCT
)
printf
(
"The molecule role is product.\n"
);
moleculeX
=
dt_next
(
container
);
if
(
NULL_OB
==
moleculeX
)
printf
(
"The NULL object is next.\n"
);
dt_reset
(
container
);
moleculeX
=
dt_next
(
container
);
if
(
moleculeX
==
molecule1
)
printf
(
"Reset is like rewind.\n"
);
if
(
dt_parent
(
molecule1
)
==
reaction
)
printf
(
"You can access the reaction through the molecule.\n"
);