This is the verbatim text of the qstrlist.h include file. It is is provided only for illustration; the copyright remains with Troll Tech


/****************************************************************************
** $Id: qstrlist.h,v 2.6 1997/08/06 15:05:54 hanord Exp $
**
** Definition of QStrList, QStrIList and QStrListIterator classes
**
** Created : 920730
**
** Copyright (C) 1992-1997 by Troll Tech AS.  All rights reserved.
**
** --------------------------------------------------------------------------
** The QStrList class provides a list of strings (i.e., char *).
*****************************************************************************/

#ifndef QSTRLIST_H
#define QSTRLIST_H

#include "qstring.h"
#include "qlist.h"
#include "qdstream.h"


#if defined(DEFAULT_TEMPLATECLASS)
typedef QListT<char>                    QStrListBase;
typedef QListIteratorT<char>            QStrListIterator;
#else
typedef Q_DECLARE(QListM,char)          QStrListBase;
typedef Q_DECLARE(QListIteratorM,char)  QStrListIterator;
#endif


class QStrList : public QStrListBase
{
public:
    QStrList( bool deepCopies=TRUE ) { dc = deepCopies; }
    QStrList( const QStrList &list );
   ~QStrList()                  { clear(); }
    QStrList& operator=( const QStrList& list );

private:
    GCI   newItem( GCI d )      { return dc ? qstrdup( (const char*)d ) : d; }
    void  deleteItem( GCI d )   { if ( dc ) delete[] (char*)d; }
    int   compareItems( GCI s1, GCI s2 )
                                { return strcmp((const char*)s1,
                                                (const char*)s2); }
    QDataStream &read( QDataStream &s, GCI &d )
                                { s >> (char *&)d; return s; }
    QDataStream &write( QDataStream &s, GCI d ) const
                                { return s << (const char *)d; }
    bool  dc;
};


class QStrIList : public QStrList               // case insensitive string list
{
public:
    QStrIList( bool deepCopies=TRUE )  : QStrList( deepCopies ) {}
   ~QStrIList()                 { clear(); }
private:
    int   compareItems( GCI s1, GCI s2 )
                                { return stricmp((const char*)s1,
                                                 (const char*)s2); }
};


inline QStrList & QStrList::operator=( const QStrList &list )
{
    clear();
    dc = list.dc;
    QStrListBase::operator=(list);
    return *this;
}

inline QStrList::QStrList( const QStrList& list )
{
    dc = FALSE;
    operator=(list);
}

#endif // QSTRLIST_H


Generated at 13:30, 1998/01/15 for Qt version 1.32 by the webmaster at Troll Tech