added missing std and vcg namespaces

This commit is contained in:
Paolo Cignoni cignoni 2007-12-02 23:15:06 +00:00
parent d40818facd
commit b8d0d7bb1d

View File

@ -93,14 +93,14 @@ public:
return NoError;
} // end of ParseALN
static bool SaveALN(const char *alnfile, vector<string> &names)
static bool SaveALN(const char *alnfile, std::vector<std::string> &names)
{
vector<Matrix44f> Tr(names.size());
std::vector<Matrix44f> Tr(names.size());
for(int i=0; i < static_cast<int>(Tr.size()); ++i) Tr[i].SetIdentity();
return SaveALN(alnfile,names, Tr);
}
template <class matrixfloat>
static bool SaveALN(const char *alnfile, vector<string> &names, vector<Matrix44 <matrixfloat> > &Tr)
static bool SaveALN(const char *alnfile, std::vector<std::string> &names, std::vector<Matrix44 <matrixfloat> > &Tr)
{
// printf("Saving aln file %s\n",alnfile);
FILE *fp=fopen(alnfile,"w");