Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfrey committed Jun 16, 2014
1 parent ecc39a9 commit 7db43ee
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/textwolf/charset_interface.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ struct Interface

/// \brief Skip to start of the next character
/// \tparam Iterator source iterator used
/// \remark bufpos is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \remark 'bufpos' is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \param [in] buf buffer for the character data
/// \param [in,out] bufpos position in 'buf'
/// \param [in,out] itr iterator to skip
Expand All @@ -95,7 +95,7 @@ struct Interface

/// \brief Fetches the ascii char representation of the current character
/// \tparam Iterator source iterator used
/// \remark bufpos is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \remark 'bufpos' is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \param [in] buf buffer for the parses character data
/// \param [in,out] bufpos position in 'buf'
/// \param [in,out] itr iterator on the source
Expand All @@ -105,7 +105,7 @@ struct Interface

/// \brief Fetches the bytes of the current character into a buffer
/// \tparam Iterator source iterator used
/// \remark bufpos is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \remark 'bufpos' is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \param [in] buf buffer for the parses character data
/// \param [in,out] bufpos position in 'buf'
/// \param [in,out] itr iterator on the source
Expand All @@ -114,7 +114,7 @@ struct Interface

/// \brief Fetches the unicode character representation of the current character
/// \tparam Iterator source iterator used
/// \remark bufpos is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \remark 'bufpos' is used as state of the iterator 'itr' passed. Therefore it is strictly forbidden to use the class by two clients simultaneously wihtout sharing the buffer 'buf' and the state 'bufpos'.
/// \param [in] buf buffer for the parses character data
/// \param [in,out] bufpos position in 'buf'
/// \param [in,out] itr iterator on the source
Expand Down

0 comments on commit 7db43ee

Please sign in to comment.