SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
sc_event_simics_adapter.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2017 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_IFACE_SC_EVENT_SIMICS_ADAPTER_H
17#define SIMICS_SYSTEMC_IFACE_SC_EVENT_SIMICS_ADAPTER_H
18
21
22#include <systemc-interfaces.h>
23
24#include <string>
25#include <vector>
26
27namespace simics {
28namespace systemc {
29namespace iface {
30
32template<typename TBase, typename TInterface = ScEventInterface>
33class ScEventSimicsAdapter : public SimicsAdapter<sc_event_interface_t> {
34 public:
36 : SimicsAdapter<sc_event_interface_t>(SC_EVENT_INTERFACE,
37 init_iface()) {
38 }
39
40 protected:
41 static void notify(conf_object_t *obj) {
42 return adapter<TBase, TInterface>(obj)->notify();
43 }
44
45 private:
46 std::vector<std::string> description(conf_object_t *obj,
47 DescriptionType type) {
48 return descriptionBase<TBase, TInterface>(obj, type);
49 }
50 sc_event_interface_t init_iface() {
51 sc_event_interface_t iface = {};
52 iface.notify = notify;
53 return iface;
54 }
55};
56
57} // namespace iface
58} // namespace systemc
59} // namespace simics
60
61#endif
Definition: sc_event_simics_adapter.h:33
ScEventSimicsAdapter()
Definition: sc_event_simics_adapter.h:35
static void notify(conf_object_t *obj)
Definition: sc_event_simics_adapter.h:41
Base class for mapping Simics interface to a C++ interface.
Definition: simics_adapter.h:47
DescriptionType
Definition: description_interface.h:25
Definition: pci_bus_interface.h:24