aboutsummaryrefslogtreecommitdiff
path: root/src/CharacterSet.hpp
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2018-07-01 23:46:14 -0700
committerRichard Walters <rwalters@digitalstirling.com>2018-07-01 23:46:14 -0700
commita8e777c8176e351906adff8d68894bd9e118c306 (patch)
treeda49f1b8fa59596d5692f7f1907270c1af87b98b /src/CharacterSet.hpp
parentff1f4f43d37d0f3c3b599e6a714239962e1cc2f7 (diff)
Refactoring
* Remove IsCharacterInSet function
Diffstat (limited to 'src/CharacterSet.hpp')
-rw-r--r--src/CharacterSet.hpp22
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 */