diff options
| author | jhurst <jhurst@cinecert.com> | 2008-07-11 06:30:14 +0000 |
|---|---|---|
| committer | jhurst <> | 2008-07-11 06:30:14 +0000 |
| commit | 4e35856e1045d356d3fcad1b4db4e40e613847c6 (patch) | |
| tree | 7a355c41268bb8b58b9a08459aa9d4bf1e91b320 /src/KM_log.h | |
| parent | 3c9d1a2d73ae08274cb0185bc6379ca42db19c3e (diff) | |
added ostream for log, SAX parser improvements
Diffstat (limited to 'src/KM_log.h')
| -rwxr-xr-x | src/KM_log.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/KM_log.h b/src/KM_log.h index fb8d805..671c072 100755 --- a/src/KM_log.h +++ b/src/KM_log.h @@ -38,6 +38,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <KM_util.h> #include <stdarg.h> #include <errno.h> +#include <iosfwd> #define LOG_MSG_IMPL(t) \ va_list args; \ @@ -135,6 +136,10 @@ namespace Kumu bool Unarchive(MemIOReader* Reader); }; + // + std::basic_ostream<char, std::char_traits<char> >& + operator<<(std::basic_ostream<char, std::char_traits<char> >& strm, LogEntry const& Entry); + typedef ArchivableList<LogEntry> LogEntryList; |
