Removed dump functions.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@973 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stan 2004-03-17 10:27:00 +00:00
parent 425d5827d3
commit 91f1a558ce
1 changed files with 0 additions and 11 deletions

View File

@ -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 ); }