how to define the charset

Ales Cepek <[email protected]> Fri, 08 Oct 2004 09:26:41 -0400
Newsgroups gmane.comp.gcc.cgicc.general
Message-ID <[email protected]>
Hi,

I am starting my first experiments with the GNU cgicc library and I am
simply delighted ;-)

I would like to ask if there is a better way how to explicitly define
the charset then in my code

      cout << html().set("lang", "cs");
      cout << head()
           << "<META HTTP-EQUIV=\"Content-Type\" "
              "CONTENT=\"text/html; charset=ISO-8859-2\">\n"
           << title("Potvrzeni testu")
           << head() << endl;
      cout << body() << endl;
      cout << comment()
           << "GNU C++ CGI class library --- cgicc v." << cgi.getVersion()
           << comment() << endl;

Thanks in advance for all suggestions 

Ales