diff options
Diffstat (limited to 'tests/testsxx.hpp')
-rw-r--r-- | tests/testsxx.hpp | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/tests/testsxx.hpp b/tests/testsxx.hpp index 1101196..059b006 100644 --- a/tests/testsxx.hpp +++ b/tests/testsxx.hpp @@ -26,21 +26,24 @@ namespace Dimension { - // Helper to return a basic scene - Scene default_scene(); - - // Display abstraction - class Display + namespace Tests { - public: - Display(const Canvas& canvas); - ~Display(); - - void flush(); - - private: - dmnsn_display* m_display; - }; + // Helper to return a basic scene + Scene default_scene(); + + // Display abstraction + class Display + { + public: + Display(const Canvas& canvas); + ~Display(); + + void flush(); + + private: + dmnsn_display* m_display; + }; + } // Print a progress bar of the progress of `progress' std::ostream& operator<<(std::ostream& ostr, |