Initial commit
This commit is contained in:
42
Torque/SDK/lib/mayasdk6/include/maya/MFStream.h
Normal file
42
Torque/SDK/lib/mayasdk6/include/maya/MFStream.h
Normal file
@@ -0,0 +1,42 @@
|
||||
#ifndef _MFStream
|
||||
#define _MFStream
|
||||
//
|
||||
//-
|
||||
// ==========================================================================
|
||||
// Copyright (C) Alias Systems, a division of Silicon Graphics Limited.
|
||||
// All rights reserved. These coded instructions, statements and computer
|
||||
// programs contain unpublished information proprietary to Alias Systems,
|
||||
// a division of Silicon Graphics Limited, which is protected by the
|
||||
// Canadian and US federal copyright law and may not be disclosed to third
|
||||
// parties or copied or duplicated, in whole or in part, without prior
|
||||
// written consent of Alias Systems, a division of Silicon Graphics Limited
|
||||
// ==========================================================================
|
||||
//+
|
||||
//
|
||||
// CLASS: MFStream
|
||||
//
|
||||
// *****************************************************************************
|
||||
|
||||
///
|
||||
/**
|
||||
The MFStream.h header file was created to centralize the including of the
|
||||
fstream header. You can define REQUIRE_IOSTREAM to
|
||||
allow "iostream" to be included rather than "iostream.h".
|
||||
This option is provided as a convenience for external developers.
|
||||
*/
|
||||
|
||||
#if defined(REQUIRE_IOSTREAM) || defined (AW_NEW_IOSTREAMS) || (_MSC_VER >= 1300)
|
||||
#include <fstream>
|
||||
using std::endl;
|
||||
using std::streambuf;
|
||||
using std::filebuf;
|
||||
using std::ifstream;
|
||||
using std::ofstream;
|
||||
using std::fstream;
|
||||
|
||||
#else
|
||||
#include <fstream.h>
|
||||
|
||||
#endif
|
||||
|
||||
#endif // _MFStream
|
||||
Reference in New Issue
Block a user