You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
/***************************************************************************
|
|
kdatabuffer.cpp - description
|
|
-------------------
|
|
begin : Fri Aug 01 2003
|
|
copyright : (C) 2003 by Friedrich W. H. Kossebau
|
|
email : Friedrich.W.H@Kossebau.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Library General Public *
|
|
* License version 2 as published by the Free Software Foundation. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
|
|
// c specific
|
|
#include <ctype.h>
|
|
// lib specific
|
|
#include "kdatabuffer.h"
|
|
|
|
using namespace KHE;
|
|
|
|
|
|
int KDataBuffer::insert( int Pos, const char* D, int Length )
|
|
{
|
|
return replace( Pos,0,D,Length );
|
|
}
|
|
|
|
|
|
int KDataBuffer::remove( KSection Remove )
|
|
{
|
|
replace( Remove, 0, 0 );
|
|
return Remove.width(); // TODO: check if this is true
|
|
}
|
|
|
|
int KDataBuffer::copyTo( char* Dest, int Pos, int Length ) const
|
|
{
|
|
return copyTo( Dest, KSection(Pos,Length,false) );
|
|
}
|
|
|
|
|
|
|
|
int KDataBuffer::copyTo( char* Dest, KSection Source ) const
|
|
{
|
|
Source.restrictEndTo( size()-1 );
|
|
for( int i=Source.start(); i<=Source.end(); ++i )
|
|
*Dest++ = datum( i );
|
|
return Source.width();
|
|
}
|