get rid of 'using namespace NCurses' directive

This commit is contained in:
Andrzej Rybczak
2012-09-02 15:37:42 +02:00
parent 6f59a175ec
commit d47cad1d50
58 changed files with 607 additions and 613 deletions

View File

@@ -26,7 +26,7 @@
#include <list>
namespace NCurses {
namespace NC {
/// Buffer template class that can store text along with its
/// format attributes. The content can be easily printed to
@@ -234,8 +234,6 @@ typedef basic_buffer<char> Buffer;
///
typedef basic_buffer<wchar_t> WBuffer;
template <typename C> basic_buffer<C>::basic_buffer(const basic_buffer &b)
: itsString(b.itsString), itsFormat(b.itsFormat) { }