@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7



Comments:

<0> Satan666 why don't you just go away before you REALLY piss me off and I ban you for life
<1> a zillion?
<1> BIG number
<2> lol
<3> given that any project takes at least a month, you must be very old
<2> vawjrwrk->c'mon, i'm just talking with you, i'm not trying to piss you off...
<4> http://ktla.trb.com/news/la-me-deal14jan14,0,4383540.story?coll=ktla-news-1
<4> really?
<4> any project takes at least a month?
<4> I've written lots of things in just a few hours.
<3> whatever, most projects do
<0> Satan666 you ask us for some comments on, we gave them, and you wanna argue
<0> NoideaWRK it's the government, you expect them to make sense?
<4> no, it's just good to stay disgusted with them.
<0> well, it _is_ in the Republik of Kalifornia
<2> the California, a place i wish to be!(even more with the -30o we have here!)



<5> guess it finally froze over
<2> i live in frozen hell!
<2> someone has a version of winhex below 12.7?
<0> so what's the temp there now?
<6> http://www.noidea128.org/sourcefiles/15822.html
<6> the last 2 lines
<6> the variant in wich I use the functor doesn't compile
<6> any idea why?
<2> functor?
<6> a smart function :)
<6> any idea?
<7> sk8ing - want to tell us what kinds of error messages you get?
<7> what the heck is BOOL ?
<5> most likely a typedef for boolean results
<7> I don't see what EnumSystemGeoID could possibly be
<6> can't convert SK8FillUP to GEO_ENUMPROC
<6> it's from the platform sdk
<7> what's 'sk8' ?
<7> you need to give us the whole picture here
<6> BOOL is requierd as a return value
<7> what's GEO_ENUMPROC?
<6> BOOL Callback EnumGeoInfoProc
<7> sigh
<6> that's geoenumproc
<7> what's Callback then?
<6> CALLBACK I guess
<7> how the hell do you expect me to magically know what all this **** is?
<7> you guess?
<7> what's sk8?
<7> come on
<6> it's on the page
<6> sk8 is SK8FillUP
<6> wich is a functor
<7> well then what's GEO_ENUMPROC ?
<7> (show me)
<7> you can't convert an object to a function pointer
<6> it's a typedef BOOL(*GEO_ENUMPROC)(GEOID);
<7> why would you think an object could be converted to a function pointer?
<7> if you look at the standard algorithms that use predicates, you'll see that the predicate type is templated
<6> brb, let me try something
<6> and how should I do it?
<6> can it be done?
<7> can what be done?
<8> you can use boost::function if you want a type that takes either functors or function pointers
<6> this ****s... I'll simply declare vx as a global variable inside a namespace and that's it
<2> someone has a good profiler?
<9> I wish I did
<2> did there are some professionnal? some you can buy?
<10> huh?
<5> Satan666, platform?
<5> there is cachegrind
<5> but it's only for Linux (and maybe BSD)
<5> http://valgrind.org/info/tools.html
<11> Haha, great stuff
<12> ?
<13> that's jb-speak for "i'm freakin gaey!"
<11> 24
<14> hey huene, got any khanku's?
<13> not on me
<13> jb, guess they figured that if lost can have a hobbit, so can 24
<11> Hey



<11> Sam Gamgee saved Jack
<14> i refuse to watch TV
<11> We appreciate the value added service of the hobbit
<14> who here knows their snuff on tv tech atm?
<14> specifically relating to HDTV and the next gen of plasma, lcd, and dlp
<15> All I know is how to find the Science Channel, the Golf Channel, and the Military Channel.
<12> boring
<14> mmmm military channel
<14> my favorite
<15> I'm waiting for the day I see my nephew kicking Iraqi ***.
<12> huh
<12> why
<15> He's a Ranger. Just got over there last month.
<12> good for him
<15> Actually, there's no more Iraqi *** to kick. It's all Syrians and Iranians.
<16> dunno if this is the right place to ask but i want to be able to sent a message to a cell phone that is connected to a PC then have the PC retrive the message from the phone and display it on a website
<16> anyone know any software that will automaticly retrive a message from a phone
<17> if you mean sms you need a gateway
<16> ok
<16> thanks
<17> or a valid sim card and something like nokia communicator
<16> i have a motorola
<17> if it has symbianOs and you can develop application for symbian you can do it i guess
<16> well i was hoping to be able to input the message into mysql
<17> then you need a sms gateway
<17> and an api with c++ to comminicate with that gateway
<16> oki
<15> Chuck "The Hit Man" Hiter on the Golf Channel
<15> Dude's a freak.
<18> anyone here use qt?
<15> Only to gas up the car.
<5> I use it all the time, but I've coded with it very little
<5> (KDE)
<18> erm, i mean as an app framework..
<18> the stupid resolver qdns that's built into it is so darned slow..
<19> anyone use vim?
<20> can somebody help me?
<20> noone?
<21> How should we know?
<20> i`m from greece and i need help with a program
<22> did you read the topic?
<22> post the code at the website
<21> Read the fifth and the sixth word of the channel topic loudly.
<1> is that a disease?
<20> ohhh
<20> ok
<21> maybe a symptom of bird flu.
<1> #doctor for bird flu problems
<23> hi everyone
<23> Animal *A; A = new Dog; where Dog is a derived cl*** of Animal. <- is this polymorphism ?
<1> not really see : http://cplus.about.com/od/beginnerctutorial/l/aa120602a.htm
<23> thanks
<23> bealtine: consider that Animal is an abstract cl***, would that makes this polymorphism ?
<1> no
<1> sot of
<23> Pet *ptr; //Pointer to base cl***
<23> ptr = new Pet;
<23> sorry
<23> this is an extract from an example in that link you have suggested
<1> read the tutorial
<23> then they do: ptr = new Rat;
<23> where Rat is a derived cl*** of Pet
<23> I am not able to see why in the example I have given there is no polymorphism
<23> I have the abstract base cl*** and two derived cl***es
<1> if pet has a virtual function then it can be considered polymorphic
<23> is it ok if this function is private, or does it need to be public ?
<1> irrelevant
<23> ok
<23> what if it is a pure virtual function, would the polymorphism remain ?
<24> Pretty much, but you couldn't instance Pet then, only subcl***es.
<1> only available to derive from then
<23> yes, I agree
<23> thanks for your information
<25> will there be any subtle difference, if i use the virtual access specifier during inheritance? (if am not going for multiple inheritance)


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #c++
or
Go to some related logs:

#linuxhelp
#linux
javascript call.select
php-fcgi 30 seconds
squid client browse faster
#MissKitten
centos disable screensaver
flashmp3_menu
sqlite_open hangs
tutorial initramfstools



Home  |  disclaimer  |  contact  |  submit quotes