Changeset 195


Ignore:
Timestamp:
1999-03-10T09:55:27+13:00 (25 years ago)
Author:
rjmcnab
Message:

Added a text_tmap type.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/lib/text_t.h

    r185 r195  
    2020#  include <ospace\std\list>
    2121#  include <ospace\std\set>
     22#  include <ospace\std\map>
    2223#elif defined(GSDL_USE_STL_H)
    2324#  include <vector.h>
    2425#  include <list.h>
    2526#  include <set.h>
     27#  include <map.h>
    2628#else
    2729#  include <vector>
    2830#  include <list>
    2931#  include <set>
     32#  include <map>
    3033#endif
    3134
     
    190193typedef list<text_t> text_tlist;  // more efficient for insertions/deletions
    191194typedef vector<text_t> text_tarray; // more space efficient than text_tlist
     195typedef map<text_t, text_t, lttext_t> text_tmap;
    192196
    193197
Note: See TracChangeset for help on using the changeset viewer.