পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Saturday, January 28, 2017

C++ Library -

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;
}

No comments:

Post a Comment