|
|
/*************************************************************************** digikam.h - description ------------------- begin : Tue Dec 25 17:48:42 CST 2001 copyright : (C) 2001 by Renchi Raju email : renchi@green.tam.uiuc.edu ***************************************************************************/ /*************************************************************************** * * * 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 DIGIKAM_H #define DIGIKAM_H #ifdef HAVE_CONFIG_H #include#endif #include #include /** Digikam is the base class of the project */ class Digikam : public QWidget { Q_OBJECT public: /** construtor */ Digikam(QWidget* parent=0, const char *name=0); /** destructor */ ~Digikam(); }; #endif
Generated by: renchi on green on Tue Dec 25 17:49:11 2001, using kdoc 2.0a53. |