SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
proxy_interface.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2015 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_INTERFACE_H
17#define SIMICS_SYSTEMC_AWARENESS_PROXY_INTERFACE_H
18
19#include <simics/cc-api.h> // ConfObjectRef
22
23#include <systemc>
24
25namespace simics {
26namespace systemc {
27namespace awareness {
28
30 public:
31 virtual void init(sc_core::sc_object *obj,
33 virtual void allProxiesInitialized() = 0;
34 virtual void breakSimulation() = 0;
35 virtual ConfObjectRef simics_obj() = 0;
36 virtual sc_core::sc_object *systemc_obj() = 0;
37 virtual void buildEventObjects() = 0;
41 virtual void simulationStarted() = 0;
42 virtual void simulationEnded() = 0;
43 virtual ~ProxyInterface() {}
44};
45
46} // namespace awareness
47} // namespace systemc
48} // namespace simics
49
50#endif
Definition: class_type.h:25
Definition: proxy_feature_interface.h:28
Definition: proxy_interface.h:29
virtual ProxyFeatureInterface * feature(ClassType type)=0
virtual ~ProxyInterface()
Definition: proxy_interface.h:43
virtual void init(sc_core::sc_object *obj, iface::SimulationInterface *simulation)=0
virtual ConfObjectRef simics_obj()=0
virtual sc_core::sc_object * systemc_obj()=0
virtual iface::SimulationInterface * simulation()=0
virtual void addFeature(ProxyFeatureInterface *feature)=0
Interface to the SystemC simulation.
Definition: simulation_interface.h:27
Definition: pci_bus_interface.h:24