sc_clock_ports.h revision 12027:1eb7dc7aa10b
1/*****************************************************************************
2
3  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4  more contributor license agreements.  See the NOTICE file distributed
5  with this work for additional information regarding copyright ownership.
6  Accellera licenses this file to you under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with the
8  License.  You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15  implied.  See the License for the specific language governing
16  permissions and limitations under the License.
17
18 *****************************************************************************/
19
20/*****************************************************************************
21
22  sc_clock_ports.h -- The clock ports.
23
24  Original Author: Martin Janssen, Synopsys, Inc., 2001-05-21
25
26  CHANGE LOG IS AT THE END OF THE FILE
27 *****************************************************************************/
28
29#ifndef SC_CLOCK_PORTS_H
30#define SC_CLOCK_PORTS_H
31
32
33#include "sysc/communication/sc_signal_ports.h"
34
35namespace sc_core {
36
37// ----------------------------------------------------------------------------
38//  The clock ports.
39//
40//  (Provided for backward compatibility reasons.)
41// ----------------------------------------------------------------------------
42
43typedef sc_in<bool>    sc_in_clk;
44typedef sc_inout<bool> sc_inout_clk;
45typedef sc_out<bool>   sc_out_clk;
46
47} // namespace sc_core
48
49//$Log: sc_clock_ports.h,v $
50//Revision 1.3  2011/08/26 20:45:39  acg
51// Andy Goodrich: moved the modification log to the end of the file to
52// eliminate source line number skew when check-ins are done.
53//
54//Revision 1.2  2011/02/18 20:23:45  acg
55// Andy Goodrich: Copyright update.
56//
57//Revision 1.1.1.1  2006/12/15 20:20:04  acg
58//SystemC 2.3
59//
60//Revision 1.2  2006/01/03 23:18:26  acg
61//Changed copyright to include 2006.
62//
63//Revision 1.1.1.1  2005/12/19 23:16:43  acg
64//First check in of SystemC 2.1 into its own archive.
65//
66//Revision 1.8  2005/06/10 22:43:55  acg
67//Added CVS change log annotation.
68//
69
70#endif
71
72// Taf!
73