Sponsored Content
Top Forums UNIX for Dummies Questions & Answers I Need Tutorial How To Install R.h. Linux 7.0 Post 14179 by IMOTEB on Tuesday 29th of January 2002 04:54:50 AM
Old 01-29-2002
Thanks a lot livingfre (Homer)
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How do i install in Linux?

I'm new to Linux & Unix in general. I have a system running Windows XP & i have a Linux RedHat 7.0 guest OS running in a Virtual Machine (VMware 3.0) now, i have to install the VMware tools for the Linux OS but i don't know how to install anything in Linux. How do i go about it? (i already have the... (1 Reply)
Discussion started by: da_gee
1 Replies

2. UNIX for Dummies Questions & Answers

trying to install linux

I am presently trying to install linux on my machine that is already running Win XP. I have tried several different versions. I began with a Mandrake Linux installation cd. I could not bring up the graphical installer so I proceeded with the text installer. Somehow I managed to partition my hard... (6 Replies)
Discussion started by: bobotoes
6 Replies

3. Linux

How to Install Linux

Hi there!!! I'm new to unix n linux .....i want to learn Linux....I heard that loading Linux u must have high sys config ...Current i've a sys with Win 98.... My system configuration: Intel Pentium III (800 MHz) RAM 64MB HDD 9GB free space in E:\ Current OS windows 98 Could u suggest me... (2 Replies)
Discussion started by: visix
2 Replies

4. UNIX for Dummies Questions & Answers

How can i install Linux????

I use windows Xp, and I am going to format my HD and make some partitions.. I want to have windows Xp and Linux installed in diferent partions. I want it so when my computer boots, I can choose which OS I would like to load. I have never installed or used Linux. so I would like to know if... (3 Replies)
Discussion started by: vit8484
3 Replies

5. UNIX for Dummies Questions & Answers

Linux Tutorial Needed

Hi guys , I m new to linux and would like to buy some quality video tutorials . Request you to guide me any good source for programming(C,Java,VB) or linux tutorials. Tutorials should be known and good like lynda.com (5 Replies)
Discussion started by: pinga123
5 Replies

6. UNIX for Advanced & Expert Users

Linux column(1) from util-linux-ng for Solaris? Which *.pkg to install?

Hi On Linux systems there is a command called "column". column - columnate lists Synopsis column -tx] -c columns] -s sep] file ...] Description The column utility formats its input into multiple columns. Rows are filled before columns. Input is taken from file operands, or,... (3 Replies)
Discussion started by: slashdotweenie
3 Replies

7. Linux

Linux install

hi i am new with linux. i have installed fedora 16 for my application to running ROMS model. in ROMS site has written that: there are one way to provide the location for the NetCDF files (and optional HDF5 library). If you are always going to be using the same compiler on each system, you can... (1 Reply)
Discussion started by: komijani
1 Replies

8. Web Development

Vue JS 2 Tutorial by The Net Ninja: A Recommended Vue.js Video Tutorial Series

A number of people have asked me how to get started with Vue.js and my reply before today was to Google "Vue.js". That has changed and my recommendation to anyone who wants to learn the fastest growing, easiest to learn and use Vue.js web dev framework is to watch this video tutorial series: ... (0 Replies)
Discussion started by: Neo
0 Replies

9. Programming

Video Tutorial of Linux System Programming with C

Video tutorial of Linux System Programming with C. YouTube - Linux System Programming with C by Indronil Banerjee (1 Reply)
Discussion started by: vectrum
1 Replies
QDictIterator(3qt)														QDictIterator(3qt)

NAME
QDictIterator - Iterator for QDict collections SYNOPSIS
#include <qdict.h> Public Members QDictIterator ( const QDict<type> & dict ) ~QDictIterator () uint count () const bool isEmpty () const type * toFirst () operator type * () const type * current () const QString currentKey () const type * operator() () type * operator++ () DESCRIPTION
The QDictIterator class provides an iterator for QDict collections. QDictIterator is implemented as a template class. Define a template instance QDictIterator<X> to create a dictionary iterator that operates on QDict<X> (dictionary of X*). The traversal order is arbitrary; when we speak of the "first"," last" and "next" item we are talking in terms of this arbitrary order. Multiple iterators may independently traverse the same dictionary. A QDict knows about all the iterators that are operating on the dictionary. When an item is removed from the dictionary, QDict updates all iterators that are referring to the removed item to point to the next item in the (arbitrary) traversal order. Example: QDict<QLineEdit> fields; fields.insert( "forename", new QLineEdit( this ) ); fields.insert( "surname", new QLineEdit( this ) ); fields.insert( "age", new QLineEdit( this ) ); fields["forename"]->setText( "Homer" ); fields["surname"]->setText( "Simpson" ); fields["age"]->setText( "45" ); QDictIterator<QLineEdit> it( fields ); for( ; it.current(); ++it ) cout << it.currentKey() << ": " << it.current()->text() << endl; cout << endl; // Output (random order): // age: 45 // surname: Simpson // forename: Homer In the example we insert some pointers to line edits into a dictionary, then iterate over the dictionary printing the strings associated with the line edits. See also QDict, Collection Classes, and Non-GUI Classes. MEMBER FUNCTION DOCUMENTATION
QDictIterator::QDictIterator ( const QDict<type> & dict ) Constructs an iterator for dict. The current iterator item is set to point to the first item in the dictionary, dict. First in this context means first in the arbitrary traversal order. QDictIterator::~QDictIterator () Destroys the iterator. uint QDictIterator::count () const Returns the number of items in the dictionary over which the iterator is operating. See also isEmpty(). type * QDictIterator::current () const Returns a pointer to the current iterator item's value. QString QDictIterator::currentKey () const Returns the current iterator item's key. bool QDictIterator::isEmpty () const Returns TRUE if the dictionary is empty, i.e. count() == 0; otherwise returns FALSE. See also count(). QDictIterator::operator type * () const Cast operator. Returns a pointer to the current iterator item. Same as current(). type * QDictIterator::operator() () Makes the next item current and returns the original current item. If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned. type * QDictIterator::operator++ () Prefix ++ makes the next item current and returns the new current item. If the current iterator item was the last item in the dictionary or if it was 0, 0 is returned. type * QDictIterator::toFirst () Resets the iterator, making the first item the first current item. First in this context means first in the arbitrary traversal order. Returns a pointer to this item. If the dictionary is empty it sets the current item to 0 and returns 0. SEE ALSO
http://doc.trolltech.com/qdictiterator.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qdictiterator.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QDictIterator(3qt)
All times are GMT -4. The time now is 09:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy