// // C++ Implementation: CGlobalEdit // // Description: // // // Author: Harald Krippel , (C) 2007 // // Copyright: See COPYING file that comes with this distribution // // #ifndef CQCAKEDLG_H #define CQCAKEDLG_H /** *@author Krippel Harald */ #include #include "listviews.hpp" class CQcakeDlg : public QDialog { Q_OBJECT public: CQcakeDlg(QWidget * parent = 0, Qt::WFlags f = 0 ); ~CQcakeDlg(); public slots: virtual void slotGetData(FolderListItem *i); }; #endif