1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/****************************************************************************
** $Id: qwidgetintdict.h,v 2.10 1999/06/03 00:40:37 warwick Exp $
**
** Definition of QWidgetIntDict
**
** Created : 950116
**
** Copyright (C) 1992-1999 Troll Tech AS. All rights reserved.
**
** This file is part of the Qt GUI Toolkit.
**
** This file may be distributed under the terms of the Q Public License
** as defined by Troll Tech AS of Norway and appearing in the file
** LICENSE.QPL included in the packaging of this file.
**
** Licensees holding valid Qt Professional Edition licenses may use this
** file in accordance with the Qt Professional Edition License Agreement
** provided with the Qt Professional Edition.
**
** See http://www.troll.no/pricing.html or email sales@troll.no for
** information about the Professional Edition licensing, or see
** http://www.troll.no/qpl/ for QPL licensing information.
**
*****************************************************************************/
#ifndef QWIDINTDICT_H
#define QWIDINTDICT_H
#ifndef QT_H
#include "qwidget.h"
#include "qintdict.h"
#endif // QT_H
#if defined(Q_TEMPLATEDLL)
template class Q_EXPORT QIntDict<QWidget>;
template class Q_EXPORT QIntDictIterator<QWidget>;
#endif
class Q_EXPORT QWidgetIntDict : public QIntDict<QWidget>
{
public:
QWidgetIntDict(int size=17) : QIntDict<QWidget>(size) {}
QWidgetIntDict( const QWidgetIntDict &dict ) : QIntDict<QWidget>(dict) {}
~QWidgetIntDict() { clear(); }
QWidgetIntDict &operator=(const QWidgetIntDict &dict)
{ return (QWidgetIntDict&)QIntDict<QWidget>::operator=(dict); }
};
class Q_EXPORT QWidgetIntDictIt : public QIntDictIterator<QWidget>
{
public:
QWidgetIntDictIt( const QWidgetIntDict &d ) : QIntDictIterator<QWidget>(d) {}
QWidgetIntDictIt &operator=(const QWidgetIntDictIt &i)
{ return (QWidgetIntDictIt&)QIntDictIterator<QWidget>::operator=(i); }
};
#endif // QWIDINTDICT_H
|