diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-07-01 23:46:14 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-07-01 23:46:14 -0700 |
commit | a8e777c8176e351906adff8d68894bd9e118c306 (patch) | |
tree | da49f1b8fa59596d5692f7f1907270c1af87b98b /src/CharacterSet.hpp | |
parent | ff1f4f43d37d0f3c3b599e6a714239962e1cc2f7 (diff) |
Refactoring
* Remove IsCharacterInSet function
Diffstat (limited to 'src/CharacterSet.hpp')
-rw-r--r-- | src/CharacterSet.hpp | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/CharacterSet.hpp b/src/CharacterSet.hpp index e93976f..657c89d 100644 --- a/src/CharacterSet.hpp +++ b/src/CharacterSet.hpp @@ -4,8 +4,7 @@ /** * @file CharacterSet.hpp * - * This module declares the Uri::IsCharacterInSet function - * and the CharacterSet class. + * This module declares the Uri::CharacterSet class. * * © 2018 by Richard Walters */ @@ -98,25 +97,6 @@ namespace Uri { std::unique_ptr< struct Impl > impl_; }; - /** - * This function determines whether or not the given character - * is in the given character set. - * - * @param[in] c - * This is the character to check. - * - * @param[in] characterSet - * This is the set of characters that are allowed. - * - * @return - * An indication of whether or not the given character - * is in the given character set is returned. - */ - bool IsCharacterInSet( - char c, - const CharacterSet& characterSet - ); - } #endif /* URI_CHARACTER_SET_HPP */ |