SystemC 3.0.0
Accellera SystemC proof-of-concept library
sc_iostream.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-2011 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 Version 3.0 (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.systemc.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_iostream.h - Portable iostream header file wrapper.
21
22 Original Author: Martin Janssen, Synopsys, Inc.
23
24 Note: Deprecated in the meantime, since all supported
25 compilers are supposed to have a working C++
26 standard library.
27
28 CHANGE LOG AT END OF FILE
29 *****************************************************************************/
30
31#ifndef SC_IOSTREAM_H
32#define SC_IOSTREAM_H
33
34#include <iostream>
35#include <sstream>
36#include <fstream>
37#include <cstddef>
38#include <cstring>
39
40// $Log: sc_iostream.h,v $
41// Revision 1.3 2011/08/26 20:46:18 acg
42// Andy Goodrich: moved the modification log to the end of the file to
43// eliminate source line number skew when check-ins are done.
44//
45// Revision 1.2 2011/02/18 20:38:43 acg
46// Andy Goodrich: Updated Copyright notice.
47//
48// Revision 1.1.1.1 2006/12/15 20:20:06 acg
49// SystemC 2.3
50//
51// Revision 1.3 2006/01/13 18:53:10 acg
52// Andy Goodrich: Added $Log command so that CVS comments are reproduced in
53// the source.
54//
55
56#endif // !defined(SC_IOSTREAM_H)