Last change
on this file since 52 was
52,
checked in by meunier, 12 years ago
|
Code formatting in all source files.
|
File size:
1.3 KB
|
Rev | Line | |
---|
[1] | 1 | /*------------------------------------------------------------\ |
---|
| 2 | | | |
---|
| 3 | | Tool : systemcass | |
---|
| 4 | | | |
---|
| 5 | | File : port_dependency.h | |
---|
| 6 | | | |
---|
| 7 | | Author : Buchmann Richard | |
---|
| 8 | | | |
---|
| 9 | | Date : 09_07_2004 | |
---|
| 10 | | | |
---|
| 11 | \------------------------------------------------------------*/ |
---|
| 12 | #ifndef PORT_DEPENDENCY_H |
---|
| 13 | #define PORT_DEPENDENCY_H |
---|
| 14 | |
---|
| 15 | #include "sc_fwd.h" |
---|
| 16 | #include <list> |
---|
| 17 | |
---|
| 18 | #include "port_dependency_ext.h" |
---|
| 19 | |
---|
| 20 | namespace sc_core { |
---|
| 21 | |
---|
| 22 | // Port Dependency Graph |
---|
| 23 | struct PortDependency { |
---|
[52] | 24 | const method_process_t * method; |
---|
| 25 | const sc_port_base * source; |
---|
| 26 | const sc_port_base * destination; |
---|
[1] | 27 | }; |
---|
[52] | 28 | |
---|
[1] | 29 | typedef std::list<PortDependency> PortDependencyGraph; |
---|
| 30 | |
---|
| 31 | // Accessor |
---|
| 32 | extern const PortDependencyGraph& get_port_dependency_graph (); |
---|
| 33 | |
---|
| 34 | // Dump to dot file |
---|
[52] | 35 | extern bool PortDependencyGraph2dot(const char * name, const PortDependencyGraph& = get_port_dependency_graph()); |
---|
[1] | 36 | |
---|
| 37 | } // end of sc_core namespace |
---|
| 38 | |
---|
| 39 | #endif |
---|
| 40 | |
---|
Note: See
TracBrowser
for help on using the repository browser.