Re: namespaces, class libraries, and VERY large projects
apm35@student.open.ac.uk wrote:
kanze wrote:
apm35@student.open.ac.uk wrote:
I have a question about the way people choose to partition
large C++ projects (millions of LOC, lots of class
libraries) using namespaces.
[snip]
I have seen three ways of doing it
1. Give each class library its own namespace, qualify all usage.
[snip]
I've only seen (1) in actual practice. (3) seems abherant.
(3) seems very odd (ahem) to me also. I thought I would see if
anyome had come across it.
I prefer to be very explicit when addressing another
subsystem, and make it clear, even in the body of the code,
what is external. The qualifications aren't excessive, but
contain information which I would consider important.
Well this is my view, but I have found that when the libraries
are undergoing active development they can sometimes be
refactored and using style (1) means developers that are
affected have to edit alot more code.
Generally speaking, refactoring will also change the set of
functions available (if not, why bother), so client code has to
be revisited anyway. This is one of the reasons why it is so
important to design the interface to a library before starting
any coding (and to regroup any changes to it in, to minimize the
number of times client code has to change). The usual solution
when a library is undergoing active development is for clients
to continue using the old version until the new one is stable,
so they only have to rework there code once. (Clearcase handles
this particularly well, but it can be managed with most version
control systems with bit of effort.)
--
James Kanze GABI Software
Conseils en informatique orient?e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S?mard, 78210 St.-Cyr-l'?cole, France, +33 (0)1 30 23 00 34
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]