c++ Programming Glossary: mycollection
Is it okay to inherit implementation from STL containers, rather than delegate? http://stackoverflow.com/questions/2034916/is-it-okay-to-inherit-implementation-from-stl-containers-rather-than-delegate show it here as pseudo code typedef std vector MyObject MyCollection void specialCollectionInitializer MyCollection c arguments..... MyObject MyCollection void specialCollectionInitializer MyCollection c arguments... result specialCollectionFunction const MyCollection.. c arguments... result specialCollectionFunction const MyCollection c etc... A more OO way of doing it typedef std vector MyObject..
|