scc  2022.4.0
SystemC components library
target_info_if.h
1 /*
2  * target_info_if.h
3  *
4  * Created on: Aug 23, 2023
5  * Author: eyckj
6  */
7 
8 #ifndef _AXI_PE_TARGET_INFO_IF_H_
9 #define _AXI_PE_TARGET_INFO_IF_H_
10 
11 namespace axi {
12 namespace pe {
13 
15 public:
16  virtual ~target_info_if() = default;
17 
18  virtual size_t get_outstanding_tx_count() = 0;
19 };
20 
21 } /* namespace pe */
22 } /* namespace axi */
23 
24 #endif /* _AXI_PE_TARGET_INFO_IF_H_ */
TLM2.0 components modeling AHB.
Definition: axi_initiator.h:30