Re: irregulars: how to split c++ class between multiple files

2003-08-14 Thread The Fool
-- From: Horn, John [EMAIL PROTECTED] To: Killer Bs Discussion [EMAIL PROTECTED] Subject: RE: irregulars: how to split c++ class between multiple files Date: Saturday, August 09, 2003 10:20 AM From: The Fool [mailto:[EMAIL PROTECTED] I have a c++ class that is very large (90k lines

Re: irregulars: how to split c++ class between multiple files

2003-08-14 Thread Jan Coffey
--- The Fool [EMAIL PROTECTED] wrote: -- From: Horn, John [EMAIL PROTECTED] To: Killer Bs Discussion [EMAIL PROTECTED] Subject: RE: irregulars: how to split c++ class between multiple files Date: Saturday, August 09, 2003 10:20 AM From: The Fool [mailto:[EMAIL PROTECTED

Re: irregulars: how to split c++ class between multiple files

2003-08-14 Thread Jan Coffey
--- Joshua Bell [EMAIL PROTECTED] wrote: From: The Fool [EMAIL PROTECTED] Not in this particular case. All the functions are related / use the same class variables etc. Also sometimes speed and efficiency are more important than ease of use. Very rarely - what's going to happen to

Re: irregulars: how to split c++ class between multiple files

2003-08-14 Thread Joshua Bell
From: The Fool [EMAIL PROTECTED] Not in this particular case. All the functions are related / use the same class variables etc. Also sometimes speed and efficiency are more important than ease of use. Very rarely - what's going to happen to the code in 6 months when you've forgotten how

irregulars: how to split c++ class between multiple files

2003-08-10 Thread The Fool
I have a c++ class that is very large (90k lines) that I need to split up between multiple files. The way it is now I have a header file with all the declarations x.h, and a c++ source file that contains all the functions in y.cpp. I need to be able to split the functions up between two files

RE: irregulars: how to split c++ class between multiple files

2003-08-09 Thread Horn, John
From: The Fool [mailto:[EMAIL PROTECTED] I have a c++ class that is very large (90k lines) that I need to split up between multiple files. I'm not a c++ programmer. But that seems to be a very, very large class. Wouldn't it be better (and/or possible) to split it up into a main class and