blob: 9a93e57563af249d0e84589e9eb5de73ace152b2 [file] [log] [blame]
#ifndef BLIF_COMMON_HPP
#define BLIF_COMMON_HPP
#include "blifparse.hpp"
namespace blifparse {
/*
* Function Declarations
*/
struct Names {
std::vector<std::string> nets;
std::vector<std::vector<LogicValue>> so_cover;
};
struct SubCkt {
std::string model;
std::vector<std::string> ports;
std::vector<std::string> nets;
};
} //namespace
#endif