mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 02:42:51 +00:00
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
/***************************************************************************
|
|
mimeio.h - description
|
|
-------------------
|
|
begin : Wed Oct 25 2000
|
|
copyright : (C) 2000 by Sven Carstens
|
|
email : s.carstens@gmx.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* 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 MIMEIO_H
|
|
#define MIMEIO_H
|
|
|
|
#include <QByteArray>
|
|
#include <QFile>
|
|
|
|
/**
|
|
*@author Sven Carstens
|
|
*/
|
|
|
|
class mimeIO
|
|
{
|
|
public:
|
|
mimeIO ();
|
|
virtual ~ mimeIO ();
|
|
|
|
virtual int outputLine (const QByteArray &, int len = -1);
|
|
virtual int outputMimeLine (const QByteArray &);
|
|
virtual int inputLine (QByteArray &);
|
|
virtual int outputChar (char);
|
|
virtual int inputChar (char &);
|
|
|
|
//void setCRLF (const char *);
|
|
|
|
protected:
|
|
QByteArray theCRLF;
|
|
int crlfLen;
|
|
};
|
|
|
|
class mimeIOQFile:public mimeIO
|
|
{
|
|
public:
|
|
mimeIOQFile (const QString &);
|
|
virtual ~ mimeIOQFile ();
|
|
virtual int outputLine (const QByteArray &, int len = -1);
|
|
virtual int inputLine (QByteArray &);
|
|
|
|
protected:
|
|
QFile myFile;
|
|
};
|
|
|
|
class mimeIOQString:public mimeIO
|
|
{
|
|
public:
|
|
mimeIOQString ();
|
|
virtual ~ mimeIOQString ();
|
|
virtual int outputLine (const QByteArray &, int len = -1);
|
|
virtual int inputLine (QByteArray &);
|
|
const QString& getString () const
|
|
{
|
|
return theString;
|
|
}
|
|
void setString (const QString & _str)
|
|
{
|
|
theString = _str;
|
|
}
|
|
|
|
protected:
|
|
QString theString;
|
|
};
|
|
|
|
#endif
|