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.
45 lines
1.7 KiB
45 lines
1.7 KiB
/***************************************************************************
|
|
* Copyright (C) 2003 by Mario Scalas *
|
|
* mario.scalas@libero.it *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef BUFFEREDSTRINGREADER_H
|
|
#define BUFFEREDSTRINGREADER_H
|
|
|
|
#include <tqstringlist.h>
|
|
|
|
class CvsServicePart;
|
|
class TDEConfig;
|
|
class KDevProject;
|
|
|
|
/* This class helps when we have to collect a string list from a text
|
|
* stream, just as many cvs commands do. The problem is that the these commands
|
|
* does not provide strings as we need: often a sent string is received
|
|
* broken in two pieces and so we need a way to rebuild it. This class provide an
|
|
* abstraction for avoiding this.
|
|
* @author Mario Scalas <mario.scalas@libero.it>
|
|
*/
|
|
class BufferedStringReader
|
|
{
|
|
public:
|
|
BufferedStringReader();
|
|
virtual ~BufferedStringReader();
|
|
|
|
/**
|
|
* Add the specified characters to current buffered ones and grab
|
|
* as many '\n'-terminated strings as found.
|
|
* @param otherChars additional chars to be added to the buffer
|
|
*/
|
|
TQStringList process( const TQString &otherChars );
|
|
private:
|
|
TQString m_stringBuffer;
|
|
};
|
|
|
|
#endif // BUFFEREDSTRINGREADER_H
|