Thanks; I did a search for "UML" in the newsgroup list but I was
unable to find related groups. I will use the group you suggested.
Thanks again!
PS: Just curious, why do most C++ programmers not use UML? I have a co-
worker that swears by it. In fact, he believes in UML so much that he
doesn't believe you can create a reliable set of C++ interfaces
without it. What do C++ programmers do during the design phase-
interface implementation?
UML is a programming language of its own, it does not try to model some
other language (or, you can say that it tries to model them all) which
means that you can hardly ever get a one to one mapping between the UML
model and the actual code, at least not if you want good code.
Because of this I think UML is useful when creating abstract designs,
and to discuss ideas. But it is not good as a specification of the
actual code, so if it's going to be used you have to take care not
spending to much time perfecting the UML design, since it probably will
not hold in the end.