> From: Leo Simons [mailto:[EMAIL PROTECTED]] > > The core framework Avalon promotes and facilitates is > appropriate wherever you write java software. It would also > be appropriate in C#, > C++ (if it were feasible, which it is probably not).
It is feasible, but it is also more difficult. You have to worry about shared library support, name mangling, etc. The way out of the Interface issue is to use pure virtual classes. There are other sticking points, but they are resolvable. One thing that C++ has going for it is algorithmic programming (templates/generics), which Java does not do well at all. However, that is neither here nor there. You do need a modern C++ compiler with proper support for Exceptions and RunTime Type Identification (RTTI). -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
