|
|
/*************************************************************************** digikam.h - description ------------------- begin : Sun Dec 23 17:53:34 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 Sun Dec 23 17:54:05 2001, using kdoc 2.0a53. |