36 lines
1 KiB
C++
36 lines
1 KiB
C++
///////////////////////////////////////////////////////////////////////////
|
|
// FILE: ios/ios.h (iostreams base class)
|
|
//
|
|
// =========================================================================
|
|
//
|
|
// 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
|
|
// defines the common base class used by the iostreams classes.
|
|
///////////////////////////////////////////////////////////////////////////
|
|
#ifndef _IOS_H_INCLUDED
|
|
#define _IOS_H_INCLUDED
|
|
|
|
#ifndef _ENABLE_AUTODEPEND
|
|
#pragma read_only_file;
|
|
#endif
|
|
|
|
#ifndef _IOS_INCLUDED
|
|
#include <ios>
|
|
#endif
|
|
using std::streampos;
|
|
using std::streamoff;
|
|
using std::ios;
|
|
using std::dec;
|
|
using std::hex;
|
|
using std::oct;
|
|
|
|
#endif
|