torc-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
LibraryDatabaseStitch.hpp
Go to the documentation of this file.
1 // This program takes in path to a folder. It goes over all the files with extension .cbit
2 // in the folder and coalates them into one file.
3 
4 #include <iostream>
5 #include <vector>
6 #include <map>
7 #include <fstream>
8 #include <boost/algorithm/string.hpp>
9 #include <boost/filesystem.hpp>
10 //
11 #ifndef LIBRARYDATABASE_HPP
12 #define LIBRARYDATABASE_HPP
13 
14 // Typedefs for Maps
15 typedef std::map<const std::string, std::vector<uint32_t> > ConfigBitMap;
16 typedef std::map<const std::string, ConfigBitMap> ElementConfigMap;
17 typedef std::map<const std::string, ElementConfigMap> TiletypeElementMap;
18 
20 const std::string cFamily = "Virtex5";
21 #endif
std::string string
std::map< const std::string, std::vector< uint32_t > > ConfigBitMap
const std::string cFamily
std::map< const std::string, ElementConfigMap > TiletypeElementMap
std::map< const std::string, ConfigBitMap > ElementConfigMap
const std::string cNameSeparator