
- C++ Library - Home
- C++ Library - <fstream>
- C++ Library - <iomanip>
- C++ Library - <ios>
- C++ Library - <iosfwd>
- C++ Library - <iostream>
- C++ Library - <istream>
- C++ Library - <ostream>
- C++ Library - <sstream>
- C++ Library - <streambuf>
- C++ Library - <atomic>
- C++ Library - <complex>
- C++ Library - <exception>
- C++ Library - <functional>
- C++ Library - <limits>
- C++ Library - <locale>
- C++ Library - <memory>
- C++ Library - <new>
- C++ Library - <numeric>
- C++ Library - <regex>
- C++ Library - <stdexcept>
- C++ Library - <string>
- C++ Library - <thread>
- C++ Library - <tuple>
- C++ Library - <typeinfo>
- C++ Library - <utility>
- C++ Library - <valarray>
- The C++ STL Library
- C++ Library - <array>
- C++ Library - <bitset>
- C++ Library - <deque>
- C++ Library - <forward_list>
- C++ Library - <list>
- C++ Library - <map>
- C++ Library - <multimap>
- C++ Library - <queue>
- C++ Library - <priority_queue>
- C++ Library - <set>
- C++ Library - <stack>
- C++ Library - <unordered_map>
- C++ Library - <unordered_set>
- C++ Library - <vector>
- C++ Library - <algorithm>
- C++ Library - <iterator>
- The C++ Advanced Library
- C++ Library - <any>
- C++ Library - <barrier>
- C++ Library - <bit>
- C++ Library - <chrono>
- C++ Library - <cinttypes>
- C++ Library - <clocale>
- C++ Library - <condition_variable>
- C++ Library - <coroutine>
- C++ Library - <cstdlib>
- C++ Library - <cstring>
- C++ Library - <cuchar>
- C++ Library - <charconv>
- C++ Library - <cfenv>
- C++ Library - <cmath>
- C++ Library - <ccomplex>
- C++ Library - <expected>
- C++ Library - <format>
- C++ Library - <future>
- C++ Library - <flat_set>
- C++ Library - <flat_map>
- C++ Library - <filesystem>
- C++ Library - <generator>
- C++ Library - <initializer_list>
- C++ Library - <latch>
- C++ Library - <memory_resource>
- C++ Library - <mutex>
- C++ Library - <mdspan>
- C++ Library - <optional>
- C++ Library - <print>
- C++ Library - <ratio>
- C++ Library - <scoped_allocator>
- C++ Library - <semaphore>
- C++ Library - <source_location>
- C++ Library - <span>
- C++ Library - <spanstream>
- C++ Library - <stacktrace>
- C++ Library - <stop_token>
- C++ Library - <syncstream>
- C++ Library - <system_error>
- C++ Library - <string_view>
- C++ Library - <stdatomic>
- C++ Library - <variant>
- C++ STL Library Cheat Sheet
- C++ STL - Cheat Sheet
- C++ Programming Resources
- C++ Programming Tutorial
- C++ Useful Resources
- C++ Discussion
C++ Library - <iosfwd>
Description
It is used to input-Output forward declarations,this header provides forward declarations for the types of the standard input/output library.
Defines
Following is the defines for iosfwd function.
#define _GLIBCXX_IOSFWD
Example
C++98
In below example explains about iosfwd function.
amespace std { template<class charT> struct char_traits; template<> class char_traits<char>; template<> class char_traits<wchar_t>; template<class T> class allocator; template <class charT, class traits=char_traits<charT> > class basic_ios; template <class charT, class traits=char_traits<charT> > class basic_streambuf; template <class charT, class traits=char_traits<charT> > class basic_istream; template <class charT, class traits=char_traits<charT> > class basic_ostream; template <class charT, class traits=char_traits<charT> > class basic_iostream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_stringbuf; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_istringstream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_ostringstream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_stringstream; template <class charT, class traits=char_traits<charT> > class basic_filebuf; template <class charT, class traits=char_traits<charT> > class basic_ifstream; template <class charT, class traits=char_traits<charT> > class basic_ofstream; template <class charT, class traits=char_traits<charT> > class basic_fstream; template <class charT, class traits=char_traits<charT> > class istreambuf_iterator; template <class charT, class traits=char_traits<charT> > class ostreambuf_iterator; template<class stateT> class fpos; typedef basic_ios<char> ios; typedef basic_streambuf<char> streambuf; typedef basic_istream<char> istream; typedef basic_ostream<char> ostream; typedef basic_iostream<char> iostream; typedef basic_stringbuf<char> stringbuf; typedef basic_istringstream<char> istringstream; typedef basic_ostringstream<char> ostringstream; typedef basic_stringstream<char> stringstream; typedef basic_filebuf<char> filebuf; typedef basic_ifstream<char> ifstream; typedef basic_ofstream<char> ofstream; typedef basic_fstream<char> fstream; typedef basic_ios<wchar_t> wios; typedef basic_streambuf<wchar_t> wstreambuf; typedef basic_istream<wchar_t> wistream; typedef basic_ostream<wchar_t> wostream; typedef basic_iostream<wchar_t> wiostream; typedef basic_stringbuf<wchar_t> wstringbuf; typedef basic_istringstream<wchar_t> wistringstream; typedef basic_ostringstream<wchar_t> wostringstream; typedef basic_stringstream<wchar_t> wstringstream; typedef basic_filebuf<wchar_t> wfilebuf; typedef basic_ifstream<wchar_t> wifstream; typedef basic_ofstream<wchar_t> wofstream; typedef basic_fstream<wchar_t> wfstream; typedef fpos<mbstate_t> streampos; typedef fpos<mbstate_t> wstreampos; }
C++11
In below example explains about iosfwd function.
namespace std { template<class charT> struct char_traits; template<> class char_traits<char>; template<> class char_traits<char16_t>; template<> class char_traits<char32_t>; template<> class char_traits<wchar_t>; template<class T> class allocator; template <class charT, class traits=char_traits<charT> > class basic_ios; template <class charT, class traits=char_traits<charT> > class basic_streambuf; template <class charT, class traits=char_traits<charT> > class basic_istream; template <class charT, class traits=char_traits<charT> > class basic_ostream; template <class charT, class traits=char_traits<charT> > class basic_iostream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_stringbuf; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_istringstream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_ostringstream; template <class charT, class traits=char_traits<charT>, class Alloc=allocator<charT> > class basic_stringstream; template <class charT, class traits=char_traits<charT> > class basic_filebuf; template <class charT, class traits=char_traits<charT> > class basic_ifstream; template <class charT, class traits=char_traits<charT> > class basic_ofstream; template <class charT, class traits=char_traits<charT> > class basic_fstream; template <class charT, class traits=char_traits<charT> > class istreambuf_iterator; template <class charT, class traits=char_traits<charT> > class ostreambuf_iterator; template<class stateT> class fpos; typedef basic_ios<char> ios; typedef basic_streambuf<char> streambuf; typedef basic_istream<char> istream; typedef basic_ostream<char> ostream; typedef basic_iostream<char> iostream; typedef basic_stringbuf<char> stringbuf; typedef basic_istringstream<char> istringstream; typedef basic_ostringstream<char> ostringstream; typedef basic_stringstream<char> stringstream; typedef basic_filebuf<char> filebuf; typedef basic_ifstream<char> ifstream; typedef basic_ofstream<char> ofstream; typedef basic_fstream<char> fstream; typedef basic_ios<wchar_t> wios; typedef basic_streambuf<wchar_t> wstreambuf; typedef basic_istream<wchar_t> wistream; typedef basic_ostream<wchar_t> wostream; typedef basic_iostream<wchar_t> wiostream; typedef basic_stringbuf<wchar_t> wstringbuf; typedef basic_istringstream<wchar_t> wistringstream; typedef basic_ostringstream<wchar_t> wostringstream; typedef basic_stringstream<wchar_t> wstringstream; typedef basic_filebuf<wchar_t> wfilebuf; typedef basic_ifstream<wchar_t> wifstream; typedef basic_ofstream<wchar_t> wofstream; typedef basic_fstream<wchar_t> wfstream; typedef fpos<mbstate_t> streampos; typedef fpos<mbstate_t> wstreampos; }
Advertisements