Splitting a type into multiple files.

BlitzMax Forums/BlitzMax Programming/Splitting a type into multiple files.

Will(Posted 2006) [#1]
Is there a way to split the code of a type into multiple files?

Thanks, Will.


Dreamora(Posted 2006) [#2]
Not in a usefull way

What you could try:
Split it in a way that each part "goes on" where the old was, just spanning over multiple files. Then you can recombine it using include into a new file. As include has to be at the top, the type must enclose itself.

Not sure if this works thought as there is no usefull reason to split a type onto multiple files, out of my sight (destroys autocompletition or "code analysis" features)


Will(Posted 2006) [#3]
Wait, you have auto-completion and code analysis features!? Me want!