PDA

View Full Version : Include Files


blmetz
01-12-2004, 07:00 AM
Do include files have any effect on performance?

antun
01-12-2004, 09:37 AM
No, LZX includes should not have any effect on performance. In fact it's recommended that with any larger app you do break up the code into relevant files.

One model I've taken to using is to have an application lzx file, and a class library file (myapp.lzx and classlib.lzx). That way, the app file ends up being fairly lightweight, and someone who has never looked at the code before can quickly see how the app is structured.

-Antun