Skip to content

Commit e2e5ef1

Browse files
committed
Use .hpp as file extension for C++ headers
1 parent c5158c7 commit e2e5ef1

File tree

91 files changed

+180
-180
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+180
-180
lines changed

src/CSFML/Audio/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,23 @@ set(SRC
88
${SRCROOT}/Listener.cpp
99
${INCROOT}/Listener.h
1010
${SRCROOT}/Music.cpp
11-
${SRCROOT}/MusicStruct.h
11+
${SRCROOT}/MusicStruct.hpp
1212
${INCROOT}/Music.h
1313
${SRCROOT}/Sound.cpp
14-
${SRCROOT}/SoundStruct.h
14+
${SRCROOT}/SoundStruct.hpp
1515
${INCROOT}/Sound.h
1616
${SRCROOT}/SoundBuffer.cpp
17-
${SRCROOT}/SoundBufferStruct.h
17+
${SRCROOT}/SoundBufferStruct.hpp
1818
${INCROOT}/SoundBuffer.h
1919
${SRCROOT}/SoundBufferRecorder.cpp
20-
${SRCROOT}/SoundBufferRecorderStruct.h
20+
${SRCROOT}/SoundBufferRecorderStruct.hpp
2121
${INCROOT}/SoundBufferRecorder.h
2222
${SRCROOT}/SoundRecorder.cpp
23-
${SRCROOT}/SoundRecorderStruct.h
23+
${SRCROOT}/SoundRecorderStruct.hpp
2424
${INCROOT}/SoundRecorder.h
2525
${INCROOT}/SoundStatus.h
2626
${SRCROOT}/SoundStream.cpp
27-
${SRCROOT}/SoundStreamStruct.h
27+
${SRCROOT}/SoundStreamStruct.hpp
2828
${INCROOT}/SoundStream.h
2929
${INCROOT}/Types.h
3030
)

src/CSFML/Audio/Music.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
// Headers
2727
////////////////////////////////////////////////////////////
2828
#include <CSFML/Audio/Music.h>
29-
#include <CSFML/Audio/MusicStruct.h>
30-
#include <CSFML/Internal.h>
29+
#include <CSFML/Audio/MusicStruct.hpp>
30+
#include <CSFML/Internal.hpp>
3131

3232

3333
////////////////////////////////////////////////////////////

src/CSFML/Audio/MusicStruct.h renamed to src/CSFML/Audio/MusicStruct.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
// Headers
2929
////////////////////////////////////////////////////////////
3030
#include <SFML/Audio/Music.hpp>
31-
#include <CSFML/CallbackStream.h>
31+
#include <CSFML/CallbackStream.hpp>
3232

3333

3434
////////////////////////////////////////////////////////////

src/CSFML/Audio/Sound.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
// Headers
2727
////////////////////////////////////////////////////////////
2828
#include <CSFML/Audio/Sound.h>
29-
#include <CSFML/Audio/SoundStruct.h>
30-
#include <CSFML/Internal.h>
29+
#include <CSFML/Audio/SoundStruct.hpp>
30+
#include <CSFML/Internal.hpp>
3131

3232

3333
////////////////////////////////////////////////////////////

src/CSFML/Audio/SoundBuffer.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
// Headers
2727
////////////////////////////////////////////////////////////
2828
#include <CSFML/Audio/SoundBuffer.h>
29-
#include <CSFML/Audio/SoundBufferStruct.h>
30-
#include <CSFML/CallbackStream.h>
31-
#include <CSFML/Internal.h>
29+
#include <CSFML/Audio/SoundBufferStruct.hpp>
30+
#include <CSFML/CallbackStream.hpp>
31+
#include <CSFML/Internal.hpp>
3232

3333

3434
////////////////////////////////////////////////////////////

src/CSFML/Audio/SoundBufferRecorder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
// Headers
2727
////////////////////////////////////////////////////////////
2828
#include <CSFML/Audio/SoundBufferRecorder.h>
29-
#include <CSFML/Audio/SoundBufferRecorderStruct.h>
30-
#include <CSFML/Internal.h>
29+
#include <CSFML/Audio/SoundBufferRecorderStruct.hpp>
30+
#include <CSFML/Internal.hpp>
3131

3232

3333
////////////////////////////////////////////////////////////

src/CSFML/Audio/SoundBufferRecorderStruct.h renamed to src/CSFML/Audio/SoundBufferRecorderStruct.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
// Headers
2929
////////////////////////////////////////////////////////////
3030
#include <SFML/Audio/SoundBufferRecorder.hpp>
31-
#include <CSFML/Audio/SoundBufferStruct.h>
31+
#include <CSFML/Audio/SoundBufferStruct.hpp>
3232

3333

3434
////////////////////////////////////////////////////////////
File renamed without changes.

src/CSFML/Audio/SoundRecorder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
// Headers
2727
////////////////////////////////////////////////////////////
2828
#include <CSFML/Audio/SoundRecorder.h>
29-
#include <CSFML/Audio/SoundRecorderStruct.h>
30-
#include <CSFML/Internal.h>
29+
#include <CSFML/Audio/SoundRecorderStruct.hpp>
30+
#include <CSFML/Internal.hpp>
3131

3232

3333
////////////////////////////////////////////////////////////
File renamed without changes.

0 commit comments

Comments
 (0)