parley
containermimedata.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 00003 Copyright 2007 Frederik Gladhorn <frederik.gladhorn@kdemail.net> 00004 00005 ***************************************************************************/ 00006 00007 /*************************************************************************** 00008 * * 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; either version 2 of the License, or * 00012 * (at your option) any later version. * 00013 * * 00014 ***************************************************************************/ 00015 00016 #ifndef CONTAINERMIMEDATA_H 00017 #define CONTAINERMIMEDATA_H 00018 00019 // #include <keduvoccontainer.h> 00020 00021 #include <QMimeData> 00022 00023 class KEduVocContainer; 00024 00025 class ContainerMimeData :public QMimeData { 00026 Q_OBJECT 00027 public: 00028 void addContainer(KEduVocContainer* container); 00029 QList<KEduVocContainer*> containerList() const; 00030 00031 private: 00032 QList<KEduVocContainer*> m_containers; 00033 }; 00034 00035 00036 #endif
KDE 4.4 API Reference