|
From: <bo...@us...> - 2008-10-21 07:27:37
|
Revision: 334
http://gearbox.svn.sourceforge.net/gearbox/?rev=334&view=rev
Author: borax00
Date: 2008-10-21 07:27:28 +0000 (Tue, 21 Oct 2008)
Log Message:
-----------
Changed interface of Tracer and improved implemnentation of TrivialTracer.
Modified Paths:
--------------
gearbox/trunk/doc/history.dox
gearbox/trunk/src/gbxutilacfr/tracer.h
gearbox/trunk/src/gbxutilacfr/trivialtracer.h
Modified: gearbox/trunk/doc/history.dox
===================================================================
--- gearbox/trunk/doc/history.dox 2008-10-21 07:21:16 UTC (rev 333)
+++ gearbox/trunk/doc/history.dox 2008-10-21 07:27:28 UTC (rev 334)
@@ -25,6 +25,15 @@
@section gbx_doc_history_head Changes in SVN since Last Release
+@par Updated libraries
+
+- libGbxSickAcfr
+ - A bit more careful when dealing with chunks of buffer that can't be parsed, should be a bit more robust (AlexB).
+
+- libGbxUtilAcfr
+ - Changed interface for Tracer: when querying verbosity, default destination argument is 'ToAny' (AlexB).
+ - Changed implementation of TrivialTracer to allow multiple levels of tracing verbosity (AlexB).
+
@section gbx_doc_history_807 Changes in Release 8.07
@par Project wide
Modified: gearbox/trunk/src/gbxutilacfr/tracer.h
===================================================================
--- gearbox/trunk/src/gbxutilacfr/tracer.h 2008-10-21 07:21:16 UTC (rev 333)
+++ gearbox/trunk/src/gbxutilacfr/tracer.h 2008-10-21 07:27:28 UTC (rev 334)
@@ -133,7 +133,7 @@
//! function yourself @e before calling error() if there is a significant overhead
//! in forming the tracing string. See class documentation for an example of such
//! usage.
- virtual int verbosity( TraceType traceType, DestinationType destType ) const = 0;
+ virtual int verbosity( TraceType traceType, DestinationType destType=ToAny ) const = 0;
static std::string toString( Tracer::TraceType type )
{
Modified: gearbox/trunk/src/gbxutilacfr/trivialtracer.h
===================================================================
--- gearbox/trunk/src/gbxutilacfr/trivialtracer.h 2008-10-21 07:21:16 UTC (rev 333)
+++ gearbox/trunk/src/gbxutilacfr/trivialtracer.h 2008-10-21 07:27:28 UTC (rev 334)
@@ -37,7 +37,7 @@
virtual void warning( const std::string &message, int level=1 );
virtual void error( const std::string &message, int level=1 );
virtual void debug( const std::string &message, int level=1 );
- virtual int verbosity( TraceType traceType, DestinationType destType ) const;
+ virtual int verbosity( TraceType traceType, DestinationType destType=Tracer::ToAny ) const;
private:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|