This is the verbatim text of the qwindow.h include file. It is is provided only for illustration; the copyright remains with Troll Tech
/**************************************************************************** ** $Id: qwindow.h,v 2.0 1996/09/24 10:16:05 agulbra Exp $ ** ** Definition of QWindow class ** ** Created : 931112 ** ** Copyright (C) 1993-1996 by Troll Tech AS. All rights reserved. ** *****************************************************************************/ #ifndef QWINDOW_H #define QWINDOW_H #include "qwidget.h" class QWindow : public QWidget // window widget class { Q_OBJECT public: QWindow( QWidget *parent=0, const char *name=0, WFlags f=0 ); ~QWindow(); private: // Disabled copy constructor and operator= QWindow( const QWindow & ) {} QWindow &operator=( const QWindow & ) { return *this; } }; #endif // QWINDOW_H