diff --git a/src/strbuffer.h b/src/strbuffer.h index 67a5a75d..fffece34 100644 --- a/src/strbuffer.h +++ b/src/strbuffer.h @@ -21,12 +21,11 @@ #ifndef _STRBUFFER_H #define _STRBUFFER_H -#include "window.h" -#include "utility/numeric_conversions.h" - #include +#include "utility/numeric_conversions.h" +#include "window.h" -namespace NC { +namespace NC {// /// Buffer template class that can store text along with its /// format attributes. The content can be easily printed to @@ -63,6 +62,7 @@ template class basic_buffer /// std::list itsFormat; + public: /// Constructs an empty buffer /// diff --git a/src/window.h b/src/window.h index c5a23817..3bd14b93 100644 --- a/src/window.h +++ b/src/window.h @@ -119,8 +119,8 @@ /// NC namespace provides set of easy-to-use /// wrappers over original curses library /// -namespace NC -{ +namespace NC {// + /// Colors used by NCurses /// enum Color { clDefault, clBlack, clRed, clGreen, clYellow, clBlue, clMagenta, clCyan, clWhite, clEnd };