Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29234 Discussions

Module definitions for hiding functions

cdhouston
Beginner
473 Views
I am trying to combine functions from two software programs into one larger application. I have about 60 pairs of routines that have the same names. Can I hide one set of the functions by defining them as private within a module definition, and keep all access to these within the module itself?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
473 Views
Yep. You could also be clever with a renaming clause on a USE to change the names so as to avoid conflicts.

Steve
0 Kudos
Reply