From 91f1a558ce497f050142dc696878defaea950669 Mon Sep 17 00:00:00 2001 From: stan Date: Wed, 17 Mar 2004 10:27:00 +0000 Subject: [PATCH] Removed dump functions. git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@973 e3e1d417-86f3-4887-817a-d78f3d33393f --- src/zm_buffer.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/zm_buffer.h b/src/zm_buffer.h index 4e88451cd..6ffbe7cb6 100644 --- a/src/zm_buffer.h +++ b/src/zm_buffer.h @@ -56,17 +56,6 @@ public: { delete[] storage; } - void Dump( const char *s="" ) - { - Info(( "%s - Size:%d, Allocation:%d, Storage:%p, Head:%p, Tail:%p", s, size, allocation, storage, head, tail )); - } - void FullDump( const char *s="" ) - { - for ( int i = 0; i < size && i < 100; i++ ) - { - Info(( "%d: %p - %02x\n", i, head+i, *(head+i) )); - } - } unsigned char *Head() const { return( head ); } unsigned char *Tail() const { return( tail ); } unsigned int Size() const { return( size ); }