rename pb_annotation and move it to openfpga namespace

This commit is contained in:
tangxifan 2020-01-25 18:17:00 -07:00
parent f834954698
commit 9b4b6ae083
1 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#ifndef PB_PHYSICAL_ANNOTATION_H #ifndef PB_TYPE_ANNOTATION_H
#ifndef PB_PHYSICAL_ANNOTATION_H #ifndef PB_TYPE_ANNOTATION_H
/******************************************************************** /********************************************************************
* Include header files required by the data structure definition * Include header files required by the data structure definition
@ -7,6 +7,9 @@
#include <vector> #include <vector>
#include <map> #include <map>
/* namespace openfpga begins */
namespace openfpga {
/******************************************************************** /********************************************************************
* This file include the declaration of data structures * This file include the declaration of data structures
* to store physical pb_type annotation, including * to store physical pb_type annotation, including
@ -48,5 +51,7 @@ class PhysicalPbAnnotation {
std::vector<std:map<std::string, std::string>> interconnect_circuit_model_names_; std::vector<std:map<std::string, std::string>> interconnect_circuit_model_names_;
}; };
} /* namespace openfpga ends */
#endif #endif