source: sources/src/sc_vcd_trace.h @ 65

Last change on this file since 65 was 52, checked in by meunier, 11 years ago

Code formatting in all source files.

File size: 1.3 KB
Line 
1/*------------------------------------------------------------\
2|                                                             |
3| Tool    :                  systemcass                       |
4|                                                             |
5| File    :                 sc_vcd_trace.h                    |
6|                                                             |
7| Author  :                 Kingbo Paul-Jerome                |
8|                           Buchmann Richard                  |
9|                                                             |
10| Date    :                   09_07_2004                      |
11|                                                             |
12\------------------------------------------------------------*/
13
14#ifndef SC_VCD_TRACE_H
15#define SC_VCD_TRACE_H
16
17#include "sc_fwd.h"
18
19namespace sc_core {
20
21// Create VCD file
22extern sc_trace_file * sc_create_vcd_trace_file(const char * name);
23extern void sc_close_vcd_trace_file(sc_trace_file * tf);
24
25} // end of sc_core namespace
26
27using sc_core::sc_create_vcd_trace_file;
28using sc_core::sc_close_vcd_trace_file;
29
30#endif
31
32/*
33# Local Variables:
34# tab-width: 4;
35# c-basic-offset: 4;
36# c-file-offsets:((innamespace . 0)(inline-open . 0));
37# indent-tabs-mode: nil;
38# End:
39#
40# vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
41*/
42
Note: See TracBrowser for help on using the repository browser.