SystemC  Recoding Infrastructure for SystemC v0.6.2 derived from Accellera SystemC 2.3.1
Accellera SystemC proof-of-concept library
sc_clock_ports.h
Go to the documentation of this file.
1 /*****************************************************************************
2 
3  The following code is derived, directly or indirectly, from the SystemC
4  source code Copyright (c) 1996-2014 by all Contributors.
5  All Rights reserved.
6 
7  The contents of this file are subject to the restrictions and limitations
8  set forth in the SystemC Open Source License (the "License");
9  You may not use this file except in compliance with such restrictions and
10  limitations. You may obtain instructions on how to receive a copy of the
11  License at http://www.accellera.org/. Software distributed by Contributors
12  under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
13  ANY KIND, either express or implied. See the License for the specific
14  language governing rights and limitations under the License.
15 
16  *****************************************************************************/
17 
18 /*****************************************************************************
19 
20  sc_clock_ports.h -- The clock ports.
21 
22  Original Author: Martin Janssen, Synopsys, Inc., 2001-05-21
23 
24  CHANGE LOG IS AT THE END OF THE FILE
25  *****************************************************************************/
26 
27 #ifndef SC_CLOCK_PORTS_H
28 #define SC_CLOCK_PORTS_H
29 
30 
32 
33 namespace sc_core {
34 
35 // ----------------------------------------------------------------------------
36 // The clock ports.
37 //
38 // (Provided for backward compatibility reasons.)
39 // ----------------------------------------------------------------------------
40 
41 // 03/31/2015 GL: to handle typedef in future
42 // TODO: Patched 03/31/15 by RD, TS:
43 //typedef sc_in<bool> sc_in_clk;
44 // TODO: This is only a work around (by Tim!). Rose cannot process this otherwise...
45 class sc_in_clk: public sc_in<bool>
46 { };
47 
48 // TODO: Patched 03/31/15 by RD, TS:
49 //typedef sc_inout<bool> sc_inout_clk;
50 // TODO: This is only a work around (by Tim!). Rose cannot process this otherwise...
51 class sc_inout_clk: public sc_inout<bool>
52 { };
53 
54 // TODO: Patched 03/31/15 by RD, TS:
55 //typedef sc_out<bool> sc_out_clk;
56 // TODO: This is only a work around (by Tim!). Rose cannot process this otherwise...
57 class sc_out_clk: public sc_out<bool>
58 { };
59 
60 } // namespace sc_core
61 
62 //$Log: sc_clock_ports.h,v $
63 //Revision 1.3 2011/08/26 20:45:39 acg
64 // Andy Goodrich: moved the modification log to the end of the file to
65 // eliminate source line number skew when check-ins are done.
66 //
67 //Revision 1.2 2011/02/18 20:23:45 acg
68 // Andy Goodrich: Copyright update.
69 //
70 //Revision 1.1.1.1 2006/12/15 20:20:04 acg
71 //SystemC 2.3
72 //
73 //Revision 1.2 2006/01/03 23:18:26 acg
74 //Changed copyright to include 2006.
75 //
76 //Revision 1.1.1.1 2005/12/19 23:16:43 acg
77 //First check in of SystemC 2.1 into its own archive.
78 //
79 //Revision 1.8 2005/06/10 22:43:55 acg
80 //Added CVS change log annotation.
81 //
82 
83 #endif
84 
85 // Taf!