Documenting individual source files?

BlitzMax Forums/BlitzMax Beginners Area/Documenting individual source files?

MadCat13(Posted 2006) [#1]
Is it possible to use docmods to document individual source files? I'm not making a module, I just want to make a list of methods from my objects to keep myself a little better organized.

Thanks,

MadCat13


ziggy(Posted 2006) [#2]
I don't think so, as docmods functionality is specting a module name as a parameter to work.


MadCat13(Posted 2006) [#3]
Ah, well. It wasn't really that big of a deal :)

Thanks for the reply,

MadCat13


SculptureOfSoul(Posted 2006) [#4]
You could always just compile the file as a module and then import it as such.

That works well after you're done with a source-file, but of course isn't so practical when the file in question is being updated regularly. ;)