source: sources/src/sc_event_finder.h

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

Code formatting in all source files.

File size: 1.5 KB
Line 
1/*------------------------------------------------------------\
2|                                                             |
3| Tool    :                  systemcass                       |
4|                                                             |
5| File    :                 sc_event_finder.h                 |
6|                                                             |
7| Author  :                 Buchmann Richard                  |
8|                                                             |
9| Date    :                   09_07_2004                      |
10|                                                             |
11\------------------------------------------------------------*/
12#ifndef __SC_EVENT_FINDER_H__
13#define __SC_EVENT_FINDER_H__
14
15#include "sc_fwd.h"
16
17namespace sc_core {
18
19class sc_event_finder {
20    /*const*/sc_core::sc_port_base & a_port;
21
22    public:
23    sc_event_finder(/*const*/ sc_core::sc_port_base &);
24    virtual ~sc_event_finder();
25
26    // methods
27    //
28    /*const*/ sc_core::sc_port_base& port () /*const*/;
29
30    // operators
31
32    private:
33    // disabled
34    sc_event_finder();
35    sc_event_finder(const sc_event_finder &);
36    sc_event_finder & operator = (const sc_event_finder &);
37};
38
39}
40
41#endif /* __SC_EVENT_FINDER_H__ */
42
43/*
44# Local Variables:
45# tab-width: 4;
46# c-basic-offset: 4;
47# c-file-offsets:((innamespace . 0)(inline-open . 0));
48# indent-tabs-mode: nil;
49# End:
50#
51# vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
52*/
53
Note: See TracBrowser for help on using the repository browser.