CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Voyez

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    8,078

    Re: How to flush an fstream?

    Nice...
    I'll try it!

    Meanwhile, I found the solution of doing a "do {} while(file)", and using File.get(c), and File.unget(c) just before the lop end:

    [code]
    do{
    File.get(c);
    ...
    function...
  2. Replies
    3
    Views
    8,078

    How to flush an fstream?

    Hi.

    I'm not sure if flushing is the solution but, if it is, I don't know how to do it.
    Anyway, here's the problem:

    I'm creating a function to load information about textures from an ".mtl"...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured