/***************************************************************************
                          dbaccess.h  -  description                              
                             -------------------                                         
    begin                : Fri Jun 18 1999                                           
    copyright            : (C) 1999 by Heiner Lamprecht                         
    email                : heiner@kijumfo.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 DBACCESS_H
#define DBACCESS_H

#include <qobject.h>

/**
	* This class provides functions for accessing the database.
	* Until now, only the PostgreSQL-Database is supported.
  * @author Heiner Lamprecht
  */

class DBaccess : public QObject  {
public:
	/**	constructor
		*	Creates a DBaccess-object. */
	DBaccess();
	/** destructor */
	~DBaccess();
};

#endif

Documentation generated by heiner@Tharbad on Mon Jul 5 21:28:49 CEST 1999