
________________________________ From: Vicente J. Botet Escriba <vicente.botet@wanadoo.fr> To: boost@lists.boost.org Sent: Wednesday, August 31, 2011 6:31 PM Subject: Re: [boost] Name and Namespace for Potential Boost ExtendedFloating-Point John, I'm aware of what you are doing with BigNumbers and the E-Float libraries. I understand that each one is working on different parts. What I was proposing is just that both use the same namespace. Best, Vicente ------------------------------------------------------------------ Well, that might look something like this: namespace boost { namespace math { namespace multiprecision { class mp_real { }; class mp_complex { }; } } } Or with one less level namespace boost { namespace math { class mp_real { }; class mp_complex { }; } } (Whereby, I personally would prefer the additional "multiprecision" layer.) Any comments? Sincerely, Chris.