The ITRESOLVE procedure resolves all IDL code within the iTools directory, as well as all other IDL code required for the iTools framework. This procedure is useful for constructing SAVE files containing user code that requires the iTools framework.
This routine is written in the IDL language. Its source code can be found in the file itresolve.pro in the lib/itools subdirectory of the IDL distribution.
ITRESOLVE [, PATH=string]
None.
Set this keyword to a string containing the full path to the iTools directory. The default is to use the lib/itools subdirectory within which the ITRESOLVE procedure resides.
Suppose you wish to create a SAVE file that contains all of the code necessary to run an iTool you have created with the name mytool. First compile all of your own code:
.COMPILE mytool
Now compile all of the iTools code:
ITRESOLVE
Finally, create the SAVE file:
SAVE, FILE='mytool.sav', /ROUTINES, /COMPRESS
Introduced: 6.1