Daniel Dilts wrote: > STL is simple. IOStreams isn't nearly so simple.
Here's what I mean by not simple. The STL map has no contains() function, so you have to write a bunch of extra slop, like this: if(myMap.find(42) != myMap.end()) How much simpler would it be to just write this: if(myMap.contains(42)) That's what Qt does for you with QMap. They take all the STL functionality and add a bunch of niceties that make it easy for me to KISS. --Dave -------------------- BYU Unix Users Group http://uug.byu.edu/ The opinions expressed in this message are the responsibility of their author. They are not endorsed by BYU, the BYU CS Department or BYU-UUG. ___________________________________________________________________ List Info (unsubscribe here): http://uug.byu.edu/mailman/listinfo/uug-list
