From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- examples/qtl/qtl-qvaluelist.doc | 19 +++++++++++++ examples/qtl/qtl.pro | 7 +++++ examples/qtl/qvaluelistiterator.cpp | 57 +++++++++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) create mode 100644 examples/qtl/qtl-qvaluelist.doc create mode 100644 examples/qtl/qtl.pro create mode 100644 examples/qtl/qvaluelistiterator.cpp (limited to 'examples/qtl') diff --git a/examples/qtl/qtl-qvaluelist.doc b/examples/qtl/qtl-qvaluelist.doc new file mode 100644 index 0000000..e87908a --- /dev/null +++ b/examples/qtl/qtl-qvaluelist.doc @@ -0,0 +1,19 @@ +/*! \page qtl-qvaluelist-example.html + + \ingroup examples + \title A Tiny QTL Example + +This tiny example shows a \l{QValueListIterator}. + +
+ + Implementation: + + \include qtl/qvaluelistiterator.cpp + + +*/ + + + + diff --git a/examples/qtl/qtl.pro b/examples/qtl/qtl.pro new file mode 100644 index 0000000..7601f17 --- /dev/null +++ b/examples/qtl/qtl.pro @@ -0,0 +1,7 @@ +TEMPLATE = app +TARGET = qtl + +CONFIG += qt console warn_on release + +SOURCES = qvaluelistiterator.cpp +INTERFACES = diff --git a/examples/qtl/qvaluelistiterator.cpp b/examples/qtl/qvaluelistiterator.cpp new file mode 100644 index 0000000..bdffae9 --- /dev/null +++ b/examples/qtl/qvaluelistiterator.cpp @@ -0,0 +1,57 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for Qt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include +#include +#include +#include + + +class Employee +{ +public: + Employee(): s(0) {} + Employee( const QString& name, int salary ) + : n(name), s(salary) {} + + QString name() const { return n; } + + int salary() const { return s; } + void setSalary( int salary ) { s = salary; } + + // this is here to support very old compilers + Q_DUMMY_COMPARISON_OPERATOR( Employee ) + +private: + QString n; + int s; +}; + + +int main( int, char** ) +{ + typedef QValueList EmployeeList; + EmployeeList list; + + list.append( Employee("Bill", 50000) ); + list.append( Employee("Steve",80000) ); + list.append( Employee("Ron", 60000) ); + + Employee joe( "Joe", 50000 ); + list.append( joe ); + joe.setSalary( 4000 ); + + EmployeeList::ConstIterator it = list.begin(); + while( it != list.end() ) { + printf( "%s earns %d\n", (*it).name().latin1(), (*it).salary() ); + ++it; + } + + return 0; +} -- cgit v1.2.1