Home | Categories | Alphabetical | Classes | All Contents | [ < ] | [ > ]

ITRESOLVE


Syntax | Arguments | Keywords | Examples | Version History | See Also

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.

Syntax

ITRESOLVE [, PATH=string]

Arguments

None.

Keywords

PATH

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.

Examples

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 

Version History

Introduced: 6.1

See Also

RESOLVE_ALL, SAVE


Home | Categories | Alphabetical | Classes | All Contents | [ < ] | [ > ]