>>37
Gave all 3 of those a try and they probably work fine for C and simple C++, but blow chunks for things even as barely complex as namespaces (and you can forget nested classes).
fucking hate sepples
Name:
Anonymous2008-12-31 4:09
Enjoy Your Seppled Neurons.
Name:
Anonymous2008-12-31 5:15
/prog/ was giving me a 404 error for a while. Huh.
>>49
I take that back. I tested Lzz more (http://www.lazycplusplus.com/) and found it usually works. You may have to define certain declarations to go in particular files, but say goodbye to repeated declarations. Saved me from having to manually split up all my .h files into .cpp+.h. Now I just convert them to .lzz files and I'm good to go.
Name:
Anonymous2008-12-31 14:43
>>49
I take that back. I tested Lzz more (http://www.lazycplusplus.com/) and found it usually works. You may have to define certain declarations to go in particular files, but say goodbye to repeated declarations. Saved me from having to manually split up all my .h files into .cpp+.h. Now I just convert them to .lzz files and I'm good to go.
Name:
Anonymous2008-12-31 16:06
>>67,68
Perhaps you could use another language instead?
its called prototyping. the first time u basicly just say, this function is somewhere in this file. Otherwise your compiler will bump into functions he doensn 't know yet and will just not compile. U can do without prototyping, its not needed, however it makes the order in wich the functions are ordered in tour code-file irrelevant.