ifstream as argument without referenceFixed! Thank you. The error was that Blender's text export format wasn't compatible enough with Wind...
ifstream as argument without referenceIt keeps printing the same. [code] cout << streamoff(InFile.tellg()) << endl; [/code]
ifstream as argument without referenceThat prints the same because streampos can be perfectly casted to streamoff. But adding these two l...
ifstream as argument without reference[code] ifstream InFile(strFilename); if (InFile) { // ... while (InFile) { stri...
ifstream as argument without referenceI did something like JLBorges but using istream::tellg and istream::seekg. Like this: [code] void f...
This user does not accept Private Messages