fstream - STL C++

basic_filebuf<C, T>::overflow()

Declaration

protected:
virtual int_type basic_filebuf<C,T>::overflow(int_type qChar = T::eof);

Description

This is overflow() function for the basic_filebuf class template. This is a protected function that is called internally when a character is inserted into a full buffer. If the insertion is not successful, the function returns T::eof. Otherwise, it returns T::not_eof(qChar).

Header Include

#include <fstream>
 

© 2007–2024 XoaX.net LLC. All rights reserved.