Toolkit Tutorial: Programming


  /* The path stream refers to the pathset as its base. */
 
if ( dt_base ( container ) == pathset )
   
printf ( "You can access the pathset through the stream.\n" );

 
/* The molecules are not deallocated when
    the molecule stream is deallocated. */

 
dt_dealloc ( container );
 
if ( dt_invalid ( path1 ) == 0 )
   
printf ( "The path is not deallocated.\n" );

 
/* The stream is deallocated when the molecule is deallocated */
 
container = dt_stream ( pathset , TYP_PATH );
 
dt_dealloc ( pathset );
 
if ( dt_invalid ( container ) == 1 )
   
printf ( "The container is deallocated.\n" );