SDSL: Succinct Data Structure Library
A C++ template library for succinct data structures
|
00001 00004 #ifndef INCLUDED_SDSL_TYPEDEFS 00005 #define INCLUDED_SDSL_TYPEDEFS 00006 00007 #include <map> 00008 #include <string> 00009 #include <vector> 00010 00011 namespace sdsl 00012 { 00013 00014 typedef std::map<std::string, std::string> tMSS; 00015 typedef std::vector<std::string> tVS; 00016 00017 } 00018 00019 #endif