This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/h/ostream.h

40 lines
1.1 KiB
C++

///////////////////////////////////////////////////////////////////////////
// FILE: ostream/ostream.h (ostream 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 output stream class and associated
// parameterless manipulators.
///////////////////////////////////////////////////////////////////////////
#ifndef _OSTREAM_H_INCLUDED
#define _OSTREAM_H_INCLUDED
#ifndef _ENABLE_AUTODEPEND
#pragma read_only_file;
#endif
#ifndef _OSTREAM_INCLUDED
#include <ostream>
#endif
using std::ostream;
using std::endl;
using std::ends;
using std::flush;
// All included names should also be in the global namespace.
#ifndef _IOS_H_INCLUDED
#include <ios.h>
#endif
#endif