SDSL: Succinct Data Structure Library
A C++ template library for succinct data structures
 All Classes Namespaces Files Functions Variables Typedefs Friends
sdsl/include/sdsl/typedefs.hpp
Go to the documentation of this file.
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