From cab787170f6f43be5c0aaecb9c23220f5133870e Mon Sep 17 00:00:00 2001 From: cignoni Date: Mon, 27 Mar 2006 07:18:22 +0000 Subject: [PATCH] added missing std:: --- wrap/io_trimesh/import_obj.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wrap/io_trimesh/import_obj.h b/wrap/io_trimesh/import_obj.h index 418512c6..e16961d8 100644 --- a/wrap/io_trimesh/import_obj.h +++ b/wrap/io_trimesh/import_obj.h @@ -25,13 +25,15 @@ History $Log: not supported by cvs2svn $ +Revision 1.1 2006/03/07 13:19:29 cignoni +First Release with OBJ import support + Initial Working version coded by Buzzelli. ****************************************************************************/ #ifndef __VCGLIB_IMPORT_OBJ #define __VCGLIB_IMPORT_OBJ -#include #include #include #include @@ -895,10 +897,10 @@ static bool LoadMask(const char * filename, int &mask) return false; // obtain length of file: - stream.seekg (0, ios::end); + stream.seekg (0, std::ios::end); int length = stream.tellg(); if (length == 0) return false; - stream.seekg (0, ios::beg); + stream.seekg (0, std::ios::beg); bool bHasPerWedgeTexCoord = false;