25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
bibletime/bibletime/backend/cplaintextexportrendering.h

43 satır
1.0 KiB

//
// C++ Interface: cplaintextexportrendering
//
// Description:
//
//
// Author: The BibleTime team <info@bibletime.info>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef RENDERINGCPLAINTEXTEXPORTRENDERING_H
#define RENDERINGCPLAINTEXTEXPORTRENDERING_H
#include "chtmlexportrendering.h"
namespace Rendering {
/**
* This implementation can be used to export content as plain text.
* @short Text rendering as plain text.
* @author The BibleTime team
*/
class CPlainTextExportRendering : public CHTMLExportRendering {
public:
CPlainTextExportRendering(
const Settings& settings,
CSwordBackend::DisplayOptions displayOptions = CBTConfig::getDisplayOptionDefaults(),
CSwordBackend::FilterOptions filterOptions = CBTConfig::getFilterOptionDefaults()
);
virtual ~CPlainTextExportRendering();
protected:
virtual const TQString renderEntry( const KeyTreeItem&, CSwordKey* = 0 );
virtual const TQString finishText( const TQString&, KeyTree& tree );
};
};
#endif