aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard Walters <rwalters@digitalstirling.com>2018-07-01 23:39:59 -0700
committerRichard Walters <rwalters@digitalstirling.com>2018-07-01 23:39:59 -0700
commitff1f4f43d37d0f3c3b599e6a714239962e1cc2f7 (patch)
treeb11a356e3779178c744b6173b32bf90c66d0e6e7 /src
parentb6728bb7151b3b72cbd6787e3a9d9d581c6e741c (diff)
Rename IsCharacterInSet module to CharacterSet
Diffstat (limited to 'src')
-rw-r--r--src/CharacterSet.cpp (renamed from src/IsCharacterInSet.cpp)2
-rw-r--r--src/CharacterSet.hpp (renamed from src/IsCharacterInSet.hpp)8
-rw-r--r--src/PercentEncodedCharacterDecoder.cpp2
-rw-r--r--src/Uri.cpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/src/IsCharacterInSet.cpp b/src/CharacterSet.cpp
index 6b9f977..3869ec5 100644
--- a/src/IsCharacterInSet.cpp
+++ b/src/CharacterSet.cpp
@@ -7,7 +7,7 @@
* © 2018 by Richard Walters
*/
-#include "IsCharacterInSet.hpp"
+#include "CharacterSet.hpp"
#include <set>
diff --git a/src/IsCharacterInSet.hpp b/src/CharacterSet.hpp
index 50deaa4..e93976f 100644
--- a/src/IsCharacterInSet.hpp
+++ b/src/CharacterSet.hpp
@@ -1,8 +1,8 @@
-#ifndef URI_IS_CHARACTER_IN_SET_HPP
-#define URI_IS_CHARACTER_IN_SET_HPP
+#ifndef URI_CHARACTER_SET_HPP
+#define URI_CHARACTER_SET_HPP
/**
- * @file IsCharacterInSet.hpp
+ * @file CharacterSet.hpp
*
* This module declares the Uri::IsCharacterInSet function
* and the CharacterSet class.
@@ -119,4 +119,4 @@ namespace Uri {
}
-#endif /* URI_IS_CHARACTER_IN_SET_HPP */
+#endif /* URI_CHARACTER_SET_HPP */
diff --git a/src/PercentEncodedCharacterDecoder.cpp b/src/PercentEncodedCharacterDecoder.cpp
index dc7cd58..1720ee9 100644
--- a/src/PercentEncodedCharacterDecoder.cpp
+++ b/src/PercentEncodedCharacterDecoder.cpp
@@ -7,7 +7,7 @@
* © 2018 by Richard Walters
*/
-#include "IsCharacterInSet.hpp"
+#include "CharacterSet.hpp"
#include "PercentEncodedCharacterDecoder.hpp"
namespace {
diff --git a/src/Uri.cpp b/src/Uri.cpp
index 08304d3..03eff68 100644
--- a/src/Uri.cpp
+++ b/src/Uri.cpp
@@ -6,7 +6,7 @@
* © 2018 by Richard Walters
*/
-#include "IsCharacterInSet.hpp"
+#include "CharacterSet.hpp"
#include "NormalizeCaseInsensitiveString.hpp"
#include "PercentEncodedCharacterDecoder.hpp"