Changes towards 8.1.0

git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@250 f6dd340e-d3f9-0310-b409-bdd246841980
This commit is contained in:
Frank B. Brokken 2009-09-23 08:59:53 +00:00
parent 0877ab5c74
commit be4c0d0ca1
6 changed files with 16 additions and 3 deletions

View file

@ -1,3 +1,5 @@
8.1.0 - Removed the template concepts section from advancedtemplates.
8.0.1 - Added --std=c++0x to the g++ compiler options
8.0.0 - New sections added describing elements of the new C++0x standard

View file

@ -105,5 +105,8 @@ includefile(advancedtemplates/using)
subsect(Using GenScatter)
includefile(advancedtemplates/usinggenscatter)
COMMENT(
Removed fm the standard
sect(Concepts (C++0x))
includefile(advancedtemplates/concepts)
END)

View file

@ -13,7 +13,8 @@ stream.
Remembering that the member function tt(setf(fmtflags flags, fmtflags mask))
requires the use of the directive tt(#include <iomanip>) (cf. section
ref(IOHDRS)) the following formatting flags are available (see also sections
ref(FORMATMEMBERS) and ref(MANIPULATORS)).
ref(FORMATMEMBERS) and ref(MANIPULATORS)). If only the formatting flags
themselves must be available then include ti(#include <ios>).
itemization(
iti(ios::adjustfield):

View file

@ -14,6 +14,10 @@ in other stream classes. Before discussing these additional stream classes,
the facilities offered by the class tt(ios) (and by implication: by
tt(ios_base)) are now introduced.
In some cases it may be required to ti(#include <ios>) explicitly. This occurs
in situations where, e.g., the mere formatting flags (cf. section
ref(FORMATFLAGS)) are referred to in source code.
The class tt(ios) offers several member functions, most of which are related
to i(formatting). Other frequently used member functions are:
itemization(

View file

@ -244,7 +244,7 @@ character not appearing in tt(argument) is found.)
quote(returns the last index in the tt(string) object where
another character than tt(c) is found.)
it() hi(string::getline())
it() hi(string::getline()) hi(getline())
tt(istream &getline(istream &istr, string object, char delimiter)):
quote(this function (note that it's not a em(member) function of
the class tt(string)) is used to read a line of text from tt(istr). All

View file

@ -1,2 +1,5 @@
SUBST(DOCVERSION)(8.0.1)
SUBST(DOCVERSION)(8.1.0)
COMMENT(8.1.0 ISN)
SUBST(YEARS)(1994 - 2009)