hi,
Does anyone know how to use the Gnu C++ Library??
i want to create some dynamically sized queues via linked lists (SLQueues).
1.>what header file should i include?(i think it is "queue")
2.>how do i instantiate the required object?
kind regards Nikhil
----------------- Nikhil D. Kikkeri 2949 Apartment 32 Binkley Avenue Dallas TX 75205 214-369-5894
Also at ------- nikhil@engr.smu.edu idlidosalover@hotmail.com nikhil_k@flashmail.com
Website ------- http://www.engr.smu.edu/~nikhil
From: Philip S Tellis philip.tellis@iname.com Reply-To: linuxers@mm.ilug-bom.org.in To: linuxers@mm.ilug-bom.org.in Subject: Re: [ILUG-BOM] mouse not responding in KDE Date: Tue, 16 Oct 2001 21:31:13 +0530 (IST)
Sometime Today, Parul Mathur assembled some asciibets to say:
I have a Microsoft Intellimouse (2 buttons) which is serially connected to DOS COM1.
Whenever I run KDE, the mouse does not respond but it does change
Does it work in the console? Do you have gpm running?
its icon depending on what is positioned underneath it. For example,
You don't need a mouse to get a mouse icon.
Make sure that your mouse works elsewhere, to isolate the problem either to the mouse driver, or to KDE.
Philip
-- Sometimes a man will tell his bartender things he'll never tell his doctor. -- Dr. Phillip Boyce, "The Menagerie" ("The Cage"), stardate unknown.
Visit my webpage at http://www.ncst.ernet.in/~philip/ Read my writings at http://www.ncst.ernet.in/~philip/writings/
MSN philiptellis Yahoo! philiptellis AIM philiptellis ICQ 129711328
_________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
On Wed, Oct 17, 2001 at 05:28:12AM +0530, Nikhil D. Kikkeri wrote:
hi,
Does anyone know how to use the Gnu C++ Library??
What does it mean you mean using libstd++ ?
i want to create some dynamically sized queues via linked lists (SLQueues). 1.>what header file should i include?(i think it is "queue")
Almost all kinds of datastructures are availble in STL.
2.>how do i instantiate the required object?
I think you need to consult some good programming book or tutorial for that. anyway, to instantiate Class A do this
A a;
//here 'a' is instance of Class A.
Regards
On Wed, 17 Oct 2001, Nikhil D. Kikkeri wrote:
First, was there any need to include my reply to Parul's mail at the bottom of your mail? What significance does that have to this mail and what purpose does it serve other than to use up bandwidth?
Does anyone know how to use the Gnu C++ Library??
If you know C++, then you know how to write the code, and which headers to use. I'll skip that. To compile/link, you have to use g++ and not gcc. That's the mistake that most people make. g++ is basically a wrapper around gcc, which loads the correct libraries for c++
Philip