In my code I am passed a reference to an iostream, that in this case is ultimately a file.
Is there any way to find out if, when it was opened, it was set to [in|out] not just [in]?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
After looking at all the members of IOS, iostream, ostream, i did not see any way to retrieve the |
|||
|
|
|
The |
||||
|
|
|
...kind of
|
|||
|
|
iostream &? If so, it inherits from bothistreamandostream, and, hence, is writable. If you're taking a reference to the base class,ios, then you're looking at either using RTTI or templated functions. – Conspicuous Compiler Aug 16 '11 at 12:02