Re: [C++] Removing 'using' statements from includes

2006-12-21 Thread Pete Robbins
On 21/12/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Jean-Sebastien Delfino wrote: When refactoring the tuscany/sca/util classes, I noticed a number of 'using namespace xyz' statements in some of our header files. I believe C++ practice is to avoid 'using' statements in a header file

Re: [C++] Removing 'using' statements from includes

2006-12-21 Thread Jean-Sebastien Delfino
Pete Robbins wrote: On 21/12/06, Jean-Sebastien Delfino [EMAIL PROTECTED] wrote: Jean-Sebastien Delfino wrote: When refactoring the tuscany/sca/util classes, I noticed a number of 'using namespace xyz' statements in some of our header files. I believe C++ practice is to avoid 'using'

[C++] Removing 'using' statements from includes

2006-12-20 Thread Jean-Sebastien Delfino
When refactoring the tuscany/sca/util classes, I noticed a number of 'using namespace xyz' statements in some of our header files. I believe C++ practice is to avoid 'using' statements in a header file as they impact all cpp files that include the header and can cause name clashes. I think I

Re: [C++] Removing 'using' statements from includes

2006-12-20 Thread Jean-Sebastien Delfino
Jean-Sebastien Delfino wrote: When refactoring the tuscany/sca/util classes, I noticed a number of 'using namespace xyz' statements in some of our header files. I believe C++ practice is to avoid 'using' statements in a header file as they impact all cpp files that include the header and can