#ifndef DOMAIN_LIBRARY_CONNECTION_H #define DOMAIN_LIBRARY_CONNECTION_H #include "attribute.h" #include "bus.h" #include "component.h" #include #include class Connection: AstNode { public: IdentifierNode component; IdentifierNode pin; IdentifierNode bus; std::vector attributes; std::vector wires; Connection(); }; #endif // DOMAIN_LIBRARY_CONNECTION_H