/***************************************************************************
kvirusdoc.h - description
-------------------
begin : Sat Jun 12 00:50:22 PDT 1999
copyright : (C) 1999 by Sung Soo Kang
email : sskang@po-box.mcgill.ca
***************************************************************************/
/***************************************************************************
* *
* 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 KVIRUSDOC_H
#define KVIRUSDOC_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <qobject.h>
/**
* This class provides base functionality for your application document
*/
class KvirusDoc : public QObject
{
Q_OBJECT
public:
/** Constructor for the fileclass of the application */
KvirusDoc(QObject*, const char *filename=0L);
/** Destructor for the fileclass of the application */
~KvirusDoc();
private:
};
#endif // KVIRUSDOC_H
Documentation generated by sskang@yeesoo on Sat Jun 12 00:50:24 PDT 1999