summaryrefslogtreecommitdiff
path: root/bibletime/backend/cplaintextexportrendering.h
diff options
context:
space:
mode:
Diffstat (limited to 'bibletime/backend/cplaintextexportrendering.h')
-rw-r--r--bibletime/backend/cplaintextexportrendering.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/bibletime/backend/cplaintextexportrendering.h b/bibletime/backend/cplaintextexportrendering.h
deleted file mode 100644
index 95a1cae..0000000
--- a/bibletime/backend/cplaintextexportrendering.h
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// 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 QString renderEntry( const KeyTreeItem&, CSwordKey* = 0 );
- virtual const QString finishText( const QString&, KeyTree& tree );
- };
-
-};
-
-#endif