diff --git a/wrap/io_tetramesh/import_ply.h b/wrap/io_tetramesh/import_ply.h index ebd4589a..40fe4fc2 100644 --- a/wrap/io_tetramesh/import_ply.h +++ b/wrap/io_tetramesh/import_ply.h @@ -204,7 +204,7 @@ public: static int Open( OpenMeshType &m, const char * filename, PlyInfo & pi ) { assert(filename!=0); - vector index; + std::vector index; LoadPly_TetraAux fa; LoadPly_VertAux va; @@ -273,8 +273,8 @@ public: } } // Descrittori definiti dall'utente, - vector VPV(pi.vdn); // property descriptor relative al tipo LoadPly_VertexAux - vector FPV(pi.fdn); // property descriptor relative al tipo LoadPly_FaceAux + std::vector VPV(pi.vdn); // property descriptor relative al tipo LoadPly_VertexAux + std::vector FPV(pi.fdn); // property descriptor relative al tipo LoadPly_FaceAux if(pi.vdn>0){ // Compute the total size needed to load additional per vertex data. @@ -318,7 +318,7 @@ public: int j; pf.SetCurElement(i); - VertexIterator vi=Allocator::AddVertices(m,n); + VertexIterator vi=vcg::tri::Allocator::AddVertices(m,n); for(j=0;j