52 lines
1.4 KiB
Plaintext
52 lines
1.4 KiB
Plaintext
///////////////////////////////////////////////////////////////////////////
|
|
// FILE: iosfwd/iosfwd.h (iostream forwarding declarations)
|
|
//
|
|
// =========================================================================
|
|
//
|
|
// Open Watcom Project
|
|
//
|
|
// Copyright (c) 2002-2010 Open Watcom Contributors. All Rights Reserved.
|
|
// Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
|
|
//
|
|
// This file is automatically generated. Do not edit directly.
|
|
//
|
|
// =========================================================================
|
|
//
|
|
// Description: This header is part of the C++ standard library. It
|
|
// declares several iostream classes incompletely to serve
|
|
// as forwarding declarations in cases where the overhead
|
|
// of full class declarations is not necessary.
|
|
///////////////////////////////////////////////////////////////////////////
|
|
#ifndef _IOSFWD_INCLUDED
|
|
#define _IOSFWD_INCLUDED
|
|
|
|
#ifndef _ENABLE_AUTODEPEND
|
|
#pragma read_only_file;
|
|
#endif
|
|
|
|
#ifndef __cplusplus
|
|
#error This header file requires C++
|
|
#endif
|
|
|
|
#ifndef _COMDEF_H_INCLUDED
|
|
#include <_comdef.h>
|
|
#endif
|
|
|
|
namespace std {
|
|
class _WPRTLINK ios;
|
|
|
|
// Basic streams.
|
|
class _WPRTLINK streambuf;
|
|
class _WPRTLINK istream;
|
|
class _WPRTLINK ostream;
|
|
class _WPRTLINK iostream;
|
|
|
|
// File streams.
|
|
class _WPRTLINK filebuf;
|
|
class _WPRTLINK ifstream;
|
|
class _WPRTLINK ofstream;
|
|
class _WPRTLINK fstream;
|
|
}
|
|
|
|
#endif
|