21 #ifndef OPHIDIAN_TIMING_ENDPOINTS_H
22 #define OPHIDIAN_TIMING_ENDPOINTS_H
24 #include "../entity_system/entity_system.h"
25 #include "../netlist/netlist.h"
32 std::vector< entity_system::entity > m_entities;
39 std::vector< entity_system::entity >::const_iterator begin()
const {
40 return m_entities.begin();
42 std::vector< entity_system::entity >::const_iterator end()
const {
43 return m_entities.end();
45 std::size_t size()
const {
46 return m_entities.size();
49 return m_entities.empty();
57 #endif // OPHIDIAN_TIMING_ENDPOINTS_H
Definition: endpoints.h:30
Netlist class.
Definition: netlist.h:41