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


/****************************************************************************
** $Id: qbitmap.h,v 1.10 1995/05/07 18:29:16 hanord Exp $
**
** Definition of QBitmap class
**
** Author  : Haavard Nord
** Created : 941020
**
** Copyright (C) 1994,1995 by Troll Tech AS.  All rights reserved.
**
*****************************************************************************/

#ifndef QBITMAP_H
#define QBITMAP_H

#include "qpixmap.h"


class QBitmap : public QPixmap                  // bitmap class
{
public:
    QBitmap();
    QBitmap( int w, int h );
    QBitmap( int w, int h, const char *bits, bool isXbitmap=FALSE );
    QBitmap( const QBitmap & );

    QBitmap &operator=( const QBitmap & );
    QBitmap &operator=( const QImage  & );
    QBitmap  copy() const;
};


inline QBitmap &QBitmap::operator=( const QBitmap &bm )
{
    return (QBitmap&)QPixmap::operator=(bm);
}


#endif // QBITMAP_H


Generated at 04:27, 1995/05/20 by the webmaster at Troll Tech