SystemC Library API Reference Manual
Reference documentation for the Simics SystemC Library.
 
Loading...
Searching...
No Matches
proxy_create_traverser.h
Go to the documentation of this file.
1// -*- mode: C++; c-file-style: "virtutech-c++" -*-
2
3/*
4 © 2014 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_CREATE_TRAVERSER_H
17#define SIMICS_SYSTEMC_AWARENESS_PROXY_CREATE_TRAVERSER_H
18
19#include <simics/cc-api.h>
24
25#include <map>
26#include <string>
27
28namespace simics {
29namespace systemc {
30namespace awareness {
31
33 using ObjProxyInterfaceMap = std::map<sc_core::sc_object *,
35
36 public:
37 ProxyCreateTraverser(simics::ConfObjectRef object,
39 ProxyFactoryInterface *factory,
40 ProxyClassRegistry *registry,
41 ObjProxyInterfaceMap *links,
42 ObjProxyInterfaceMap *new_links);
43 virtual void applyOn(sc_core::sc_object *obj);
44 virtual void done();
45
46 protected:
47 conf_object_t *root_;
48 std::string prefix_;
50 ObjProxyInterfaceMap *links_, *new_links_;
53};
54
55} // namespace awareness
56} // namespace systemc
57} // namespace simics
58
59#endif
Definition: traverser_interface.h:26
Definition: proxy_class_registry.h:34
Definition: proxy_create_traverser.h:32
ObjProxyInterfaceMap * new_links_
Definition: proxy_create_traverser.h:50
conf_object_t * root_
Definition: proxy_create_traverser.h:47
virtual void applyOn(sc_core::sc_object *obj)
ProxyCreateTraverser(simics::ConfObjectRef object, iface::SimulationInterface *simulation, ProxyFactoryInterface *factory, ProxyClassRegistry *registry, ObjProxyInterfaceMap *links, ObjProxyInterfaceMap *new_links)
iface::SimulationInterface * simulation_
Definition: proxy_create_traverser.h:51
ProxyFactoryInterface * factory_
Definition: proxy_create_traverser.h:52
ProxyClassRegistry * registry_
Definition: proxy_create_traverser.h:49
std::string prefix_
Definition: proxy_create_traverser.h:48
ObjProxyInterfaceMap * links_
Definition: proxy_create_traverser.h:50
Definition: proxy_factory_interface.h:31
Definition: proxy_interface.h:29
Interface to the SystemC simulation.
Definition: simulation_interface.h:27
Definition: pci_bus_interface.h:24