Object001
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 6 articles for 0.000 sec
Re: Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Arno
Date: May 4, 2007 02:16

... where all the actual algorithms are stored. Something along the lines of: -------------------------------------------------------- module object001 use methods type object001 real :: x end type... set_x module procedure obj001_set_x end interface contains subroutine obj001_set_x(obj) type(object001), intent(inout) :: obj call set_value(obj%%x) end subroutine end ...
Show full article (1.40Kb) · Show article thread
Re: Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Gus Gassmann
Date: May 2, 2007 13:37

... I wanted, but documenting everything is still going to cost multiple trees. Second, is there a way now to bundle the objects together in a single module, so that instead of use object001 use object002 ... use objectnnn I can simply say use objects Thanks for any ideas. gus gassmann One way is to take the common code and place ...
Show full article (1.74Kb)
Re: Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Dick Hendrickson
Date: May 2, 2007 08:14

...get what I wanted, but documenting everything is still going to cost multiple trees. Second, is there a way now to bundle the objects together in a single module, so that instead of use object001 use object002 ... use objectnnn I can simply say use objects Thanks for any ideas. gus gassmann One way is to take the common code and place it in a ...
Show full article (1.19Kb) · Show article thread
Re: Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Gus Gassmann
Date: May 2, 2007 06:35

... it by means of an INCLUDE line wherever it's needed. Second, is there a way now to bundle the objects together in a single module, so that instead of use object001 use object002 ... use objectnnn I can simply say use objects Put all the USEs into a module called objects and use objects, just as you've written. Regards, ...
Show full article (1.39Kb)
Re: Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Michael Metcalf
Date: May 2, 2007 06:27

... and insert it by means of an INCLUDE line wherever it's needed. Second, is there a way now to bundle the objects together in a single module, so that instead of use object001 use object002 ... use objectnnn I can simply say use objects Put all the USEs into a module called objects and use objects, just as you've written. Regards, Mike Metcalf
Show full article (0.97Kb) · Show article thread
Bundling multiple objects into a single module?     

Group: comp.lang.fortran · Group Profile · Search for Object001 in comp.lang.fortran
Author: Gus Gassmann
Date: May 2, 2007 06:03

... reuse the code? It was easy enough to duplicate and do global search and replace to get what I wanted, but documenting everything is still going to cost multiple trees. Second, is there a way now to bundle the objects together in a single module, so that instead of use object001 use object002 ... use objectnnn I can simply say use objects Thanks for any ideas. gus gassmann
Show full article (0.66Kb)