Changeset 8787 for code/branches
- Timestamp:
- Jul 25, 2011, 11:53:17 PM (13 years ago)
- Location:
- code/branches/output/src/libraries/util
- Files:
-
- 3 deleted
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/src/libraries/util/CMakeLists.txt
r8780 r8787 26 26 CRC32.cc 27 27 ExprParser.cc 28 OutputHandler.cc29 28 Scope.cc 30 29 ScopedSingletonManager.cc -
code/branches/output/src/libraries/util/Output.h
r8779 r8787 35 35 namespace orxonox 36 36 { 37 namespace test38 {39 37 // Just for convenience 40 38 using std::endl; … … 53 51 } 54 52 } 55 } 53 54 #define COUT(level) orxonox::orxout() 55 #define DOUT orxonox::orxout() 56 56 57 57 #endif /* _Output_H__ */ -
code/branches/output/src/libraries/util/UtilPrereqs.h
r8729 r8787 88 88 class ExprParser; 89 89 class MultiType; 90 class OutputHandler;91 90 class OutputListener; 91 class OutputManager; 92 class OutputStream; 92 93 template <ScopeID::Value> 93 94 class Scope; -
code/branches/output/src/libraries/util/output/ConsoleWriter.cc
r8780 r8787 32 32 33 33 namespace orxonox 34 {35 namespace test36 34 { 37 35 ConsoleWriter::ConsoleWriter() … … 78 76 } 79 77 } 80 } -
code/branches/output/src/libraries/util/output/ConsoleWriter.h
r8780 r8787 35 35 namespace orxonox 36 36 { 37 namespace test38 {39 37 class _UtilExport ConsoleWriter : public OutputListener 40 38 { … … 56 54 }; 57 55 } 58 }59 56 60 57 #endif /* _ConsoleWriter_H__ */ -
code/branches/output/src/libraries/util/output/LogWriter.cc
r8777 r8787 35 35 36 36 namespace orxonox 37 {38 namespace test39 37 { 40 38 LogWriter::LogWriter() … … 128 126 } 129 127 } 130 } -
code/branches/output/src/libraries/util/output/LogWriter.h
r8774 r8787 38 38 namespace orxonox 39 39 { 40 namespace test41 {42 40 class _UtilExport LogWriter : public OutputListener 43 41 { … … 67 65 }; 68 66 } 69 }70 67 71 68 #endif /* _LogWriter_H__ */ -
code/branches/output/src/libraries/util/output/MemoryWriter.cc
r8777 r8787 32 32 33 33 namespace orxonox 34 {35 namespace test36 34 { 37 35 MemoryWriter::MemoryWriter() … … 70 68 } 71 69 } 72 } -
code/branches/output/src/libraries/util/output/MemoryWriter.h
r8774 r8787 35 35 namespace orxonox 36 36 { 37 namespace test38 {39 37 class _UtilExport MemoryWriter : public OutputListener 40 38 { … … 66 64 }; 67 65 } 68 }69 66 70 67 #endif /* _MemoryWriter_H__ */ -
code/branches/output/src/libraries/util/output/OutputDefinitions.h
r8778 r8787 37 37 38 38 namespace orxonox 39 {40 namespace test41 39 { 42 40 typedef uint16_t OutputLevel; … … 80 78 } 81 79 } 82 }83 80 84 81 #endif /* _OutputDefinitions_H__ */ -
code/branches/output/src/libraries/util/output/OutputListener.cc
r8776 r8787 32 32 33 33 namespace orxonox 34 {35 namespace test36 34 { 37 35 OutputListener::OutputListener() … … 77 75 } 78 76 } 79 } -
code/branches/output/src/libraries/util/output/OutputListener.h
r8774 r8787 38 38 namespace orxonox 39 39 { 40 namespace test41 {42 40 class _UtilExport OutputListener 43 41 { … … 72 70 }; 73 71 } 74 }75 72 76 73 #endif /* _OutputListener_H__ */ -
code/branches/output/src/libraries/util/output/OutputManager.cc
r8780 r8787 34 34 35 35 namespace orxonox 36 {37 namespace test38 36 { 39 37 OutputManager::OutputManager() … … 203 201 } 204 202 } 205 } -
code/branches/output/src/libraries/util/output/OutputManager.h
r8776 r8787 33 33 34 34 #include <vector> 35 36 35 #include <boost/bimap.hpp> 37 36 … … 40 39 namespace orxonox 41 40 { 42 namespace test43 {44 class OutputListener;45 46 41 class _UtilExport OutputManager 47 42 { … … 87 82 }; 88 83 } 89 }90 84 91 85 #endif /* _OutputManager_H__ */ -
code/branches/output/src/libraries/util/output/OutputStream.cc
r8779 r8787 33 33 namespace orxonox 34 34 { 35 namespace test36 {37 35 OutputStream::OutputStream() 38 36 { … … 56 54 } 57 55 } 58 } -
code/branches/output/src/libraries/util/output/OutputStream.h
r8779 r8787 37 37 38 38 namespace orxonox 39 {40 namespace test41 39 { 42 40 class OutputStream : public std::ostringstream … … 81 79 }; 82 80 } 83 }84 81 85 82 #endif /* _OutputStream_H__ */
Note: See TracChangeset
for help on using the changeset viewer.