diff options
-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" |