Source: sqlguipart/export_html.h
		 | 
		 |  
	 
	 
	
	 | 
 | 
/***************************************************************************
                          export_text.h  -  description
                             -------------------
    begin                : Sun Nov 18 2001
    copyright            : (C) 2001 by mb
    email                : marcus@beranek.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.                                   *
 *                                                                         *
 ***************************************************************************/
#ifdef HAVE_CONFIG_H
#include 
#endif
// include files for QT
#include 
#include 
#include 
#include 
#include 
//#include 
#include 
#include 
class ExportObj_HTML : public QObject
{
	Q_OBJECT
	public:
	ExportObj_HTML(QWidget *parent, const char *name=0);
	
	void setFilename(const QString * filename);
	//void addData(int row, int col, const char * data, const char * dtype="");
	void addData(int row, int col, QString * data, const char * dtype="");
    void finish();
	private:
	QString * exportFilename;
	cell_t * exportData;
	cell_t * last;
};
	
	| Generated by: marcus on voyager on Mon Sep 16 15:31:33 2002, using kdoc 2.0a53. |