From bd9e6617827818fd043452c08c606f07b78014a0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- umbrello/umbrello/umlclassifierlistitemlist.h | 45 +++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 umbrello/umbrello/umlclassifierlistitemlist.h (limited to 'umbrello/umbrello/umlclassifierlistitemlist.h') diff --git a/umbrello/umbrello/umlclassifierlistitemlist.h b/umbrello/umbrello/umlclassifierlistitemlist.h new file mode 100644 index 00000000..675e8d5c --- /dev/null +++ b/umbrello/umbrello/umlclassifierlistitemlist.h @@ -0,0 +1,45 @@ +/*************************************************************************** + * * + * 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. * + * * + * copyright (C) 2004-2006 * + * Umbrello UML Modeller Authors * + ***************************************************************************/ + +#ifndef UMLCLASSIFIERLISTITEMLIST_H +#define UMLCLASSIFIERLISTITEMLIST_H + +#include + +// forward declaration +class UMLClassifierListItem; + +//typedef QPtrList UMLClassifierListItemList; +typedef QPtrListIterator UMLClassifierListItemListIt; + +/** + * This sub-class adds copyInto and clone to the QPtrList + * base class. + */ +class UMLClassifierListItemList : public QPtrList +{ + +public: + + /** + * Copy the internal presentation of this object into the new + * object. + */ + virtual void copyInto (UMLClassifierListItemList *rhs) const; + + /** + * Make a clone of this object. + */ + virtual UMLClassifierListItemList* clone() const; + +}; + +#endif -- cgit v1.2.3