umbrello/umbrello
umlobjectlist.h
Go to the documentation of this file.00001 /*************************************************************************** 00002 * This program is free software; you can redistribute it and/or modify * 00003 * it under the terms of the GNU General Public License as published by * 00004 * the Free Software Foundation; either version 2 of the License, or * 00005 * (at your option) any later version. * 00006 * * 00007 * copyright (C) 2001 Gustavo Madrigal gmadrigal@nextphere.com * 00008 * copyright (C) 2002-2009 * 00009 * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> * 00010 ***************************************************************************/ 00011 00012 #ifndef UMLOBJECTLIST_H 00013 #define UMLOBJECTLIST_H 00014 00015 #include <QtCore/QList> 00016 00017 // forward declarations 00018 class UMLObject; 00019 00020 //typedef QPtrList<UMLObject> UMLObjectList; 00021 typedef QListIterator<UMLObject*> UMLObjectListIt; 00022 00027 class UMLObjectList : public QList<UMLObject*> 00028 { 00029 public: 00030 00031 UMLObjectList(); 00032 virtual ~UMLObjectList(); 00033 00034 virtual void copyInto (UMLObjectList *rhs) const; 00035 00036 virtual UMLObjectList* clone() const; 00037 }; 00038 00039 #endif
KDE 4.4 API Reference