1
0
Fork 0

Added using namespace std for compilers that support this.

This commit is contained in:
curt 1998-07-06 21:34:33 +00:00
parent f17b1af1e3
commit 39c1facaef
3 changed files with 18 additions and 0 deletions

View file

@ -48,6 +48,9 @@ extern "C" void *memset(void *, int, size_t);
#include <string> // Standard C++ string library
#include <map> // STL associative "array"
#ifdef NEEDNAMESPACESTD
using namespace std;
#endif
#include "tile.hxx"
@ -116,6 +119,9 @@ extern fgMATERIAL_MGR material_mgr;
// $Log$
// Revision 1.9 1998/07/06 21:34:33 curt
// Added using namespace std for compilers that support this.
//
// Revision 1.8 1998/06/17 21:36:39 curt
// Load and manage multiple textures defined in the Materials library.
// Boost max material fagments for each material property to 800.

View file

@ -42,6 +42,9 @@ extern "C" void *memset(void *, int, size_t);
#include <string> // Standard C++ library
#include <map> // STL
#ifdef NEEDNAMESPACESTD
using namespace std;
#endif
#include <Debug/fg_debug.h>
#include <Include/fg_constants.h>
@ -438,6 +441,9 @@ int fgObjLoad(char *path, fgTILE *tile) {
// $Log$
// Revision 1.16 1998/07/06 21:34:33 curt
// Added using namespace std for compilers that support this.
//
// Revision 1.15 1998/07/04 00:54:28 curt
// Added automatic mipmap generation.
//

View file

@ -47,6 +47,9 @@ extern "C" void *memset(void *, int, size_t);
#endif
#include <list> // STL list
#ifdef NEEDNAMESPACESTD
using namespace std;
#endif
#include <Bucket/bucketutils.h>
#include <Include/fg_types.h>
@ -118,6 +121,9 @@ public:
// $Log$
// Revision 1.9 1998/07/06 21:34:34 curt
// Added using namespace std for compilers that support this.
//
// Revision 1.8 1998/07/04 00:54:30 curt
// Added automatic mipmap generation.
//