|
|
Preface: Conventions
This tutorial is Copyright (C) 2000 Kurt Granroth
<granroth@kde.org>.
All rights reserved.
1.0 (Feb 25, 2000) - Initial Version
1.01 (Apr 4, 2000) - Additional notes added by Emily Ezust <emilye@corel.com>
1.02 (Sep 5, 2000) - Minor fixes
Most sections will have quite a bit of code listed; it
will be displayed in a box as shown below. The lines that the author
feels are important will be highlighted in bold.
Listing Description
class ExampleClass: public ParentClass
{
Q_OBJECT
public:
ExampleClass(QWidget *parent, const char *name);
virtual ~ExampleClass();
virtual void someImportantMethod();
private:
QWidget *widget;
NewWidget *m_newWidget;
};
| | |
|
|
|