diff options
author | Richard Walters <rwalters@digitalstirling.com> | 2018-07-01 23:39:59 -0700 |
---|---|---|
committer | Richard Walters <rwalters@digitalstirling.com> | 2018-07-01 23:39:59 -0700 |
commit | ff1f4f43d37d0f3c3b599e6a714239962e1cc2f7 (patch) | |
tree | b11a356e3779178c744b6173b32bf90c66d0e6e7 | |
parent | b6728bb7151b3b72cbd6787e3a9d9d581c6e741c (diff) |
Rename IsCharacterInSet module to CharacterSet
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-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.cpp | 2 | ||||
-rw-r--r-- | src/Uri.cpp | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 9172e4f..6168290 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,13 +7,13 @@ set(This Uri) set(Headers include/Uri/Uri.hpp - src/IsCharacterInSet.hpp + src/CharacterSet.hpp src/NormalizeCaseInsensitiveString.hpp src/PercentEncodedCharacterDecoder.hpp ) set(Sources - src/IsCharacterInSet.cpp + src/CharacterSet.cpp src/NormalizeCaseInsensitiveString.cpp src/PercentEncodedCharacterDecoder.cpp src/Uri.cpp 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" |