SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
proxy_signal_port.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2016 Intel Corporation
5
6 This software and the related documents are Intel copyrighted materials, and
7 your use of them is governed by the express license under which they were
8 provided to you ("License"). Unless the License provides otherwise, you may
9 not use, modify, copy, publish, distribute, disclose or transmit this software
10 or the related documents without Intel's prior written permission.
11
12 This software and the related documents are provided as is, with no express or
13 implied warranties, other than those that are expressly stated in the License.
14*/
15
16#ifndef SIMICS_SYSTEMC_AWARENESS_PROXY_SIGNAL_PORT_H
17#define SIMICS_SYSTEMC_AWARENESS_PROXY_SIGNAL_PORT_H
18
19
20
21#include <systemc>
27
28#include <vector>
29
30namespace simics {
31namespace systemc {
32namespace awareness {
33
38 public SignalReader,
39 public SignalWriter {
40 public:
41 explicit ProxySignalPort(ConfObjectRef o);
42 virtual void allProxiesInitialized();
43 virtual void callback(const sc_core::sc_object &signal_object);
44
45 private:
46 std::vector<sc_core::sc_interface *> signals_;
47};
48
49} // namespace awareness
50} // namespace systemc
51} // namespace simics
52
53#endif
Definition: signal_callback_interface.h:25
Definition: proxy_port.h:33
Definition: proxy_signal_port.h:39
virtual void callback(const sc_core::sc_object &signal_object)
Definition: signal_reader.h:30
Definition: signal_writer.h:30
Definition: tool_controller.h:74
Definition: pci_bus_interface.h:24