|
From: Markus R. <god...@us...> - 2009-07-29 15:34:16
|
Module: performous Branch: hiscore Commit: 1e7b8afa48542e6830baf1a8497bbb452557efc8 Author: Markus Raab <un...@ma...> Date: Fri Jul 24 13:24:20 2009 +0200 added pragma once in all header files --- game/cachemap.hh | 1 + game/color.hh | 1 + game/config.cmake.hh | 2 ++ game/dialog.hh | 1 + game/midifile.hh | 1 + game/opengl_text.hh | 1 + game/pitch.hh | 1 + game/screen_intro.hh | 1 + game/screen_practice.hh | 1 + game/screen_songs.hh | 1 + game/singleton.hh | 1 + game/textinput.hh | 1 + game/unused/fftgraph.hh | 1 + game/xtime.hh | 1 + 14 files changed, 15 insertions(+), 0 deletions(-) diff --git a/game/cachemap.hh b/game/cachemap.hh index b20bba7..7a59dc0 100644 --- a/game/cachemap.hh +++ b/game/cachemap.hh @@ -1,3 +1,4 @@ +#pragma once #include <boost/ptr_container/ptr_map.hpp> #include <list> diff --git a/game/color.hh b/game/color.hh index 9559747..57ca3fe 100644 --- a/game/color.hh +++ b/game/color.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef PERFORMOUS_COLOR_HH #define PERFORMOUS_COLOR_HH diff --git a/game/config.cmake.hh b/game/config.cmake.hh index f81e70a..593a7b0 100644 --- a/game/config.cmake.hh +++ b/game/config.cmake.hh @@ -1,3 +1,5 @@ +#pragma once + // CMake uses config.cmake.hh to generate config.hh within the build folder. #ifndef PERFORMOUS_CONFIG_HH #define PERFORMOUS_CONFIG_HH diff --git a/game/dialog.hh b/game/dialog.hh index bec8dce..ce57981 100644 --- a/game/dialog.hh +++ b/game/dialog.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef PERFORMOUS_DIALOG_HH #define PERFORMOUS_DIALOG_HH diff --git a/game/midifile.hh b/game/midifile.hh index 2ce9c46..9ba85f8 100644 --- a/game/midifile.hh +++ b/game/midifile.hh @@ -1,3 +1,4 @@ +#pragma once #include <boost/cstdint.hpp> #include <fstream> #include <map> diff --git a/game/opengl_text.hh b/game/opengl_text.hh index 37c8af1..b2f9e97 100644 --- a/game/opengl_text.hh +++ b/game/opengl_text.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef __OPENGL_THEME_H__ #define __OPENGL_THEME_H__ diff --git a/game/pitch.hh b/game/pitch.hh index 6bc68a5..f64132d 100644 --- a/game/pitch.hh +++ b/game/pitch.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef USNG_PITCH_H_INCLUDED #define USNG_PITCH_H_INCLUDED diff --git a/game/screen_intro.hh b/game/screen_intro.hh index 125462b..9e6c4ac 100644 --- a/game/screen_intro.hh +++ b/game/screen_intro.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef __SCREENINTRO_H__ #define __SCREENINTRO_H__ diff --git a/game/screen_practice.hh b/game/screen_practice.hh index 8c72c16..1816055 100644 --- a/game/screen_practice.hh +++ b/game/screen_practice.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef __SCREENPRACTICE_H__ #define __SCREENPRACTICE_H__ diff --git a/game/screen_songs.hh b/game/screen_songs.hh index 6eefff8..9508227 100644 --- a/game/screen_songs.hh +++ b/game/screen_songs.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef PERFORMOUS_SCREEN_SONGS_HH #define PERFORMOUS_SCREEN_SONGS_HH diff --git a/game/singleton.hh b/game/singleton.hh index a85ce93..75361c0 100644 --- a/game/singleton.hh +++ b/game/singleton.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef __SINGLETON_H__ #define __SINGLETON_H__ diff --git a/game/textinput.hh b/game/textinput.hh index 11156c6..67b36f1 100644 --- a/game/textinput.hh +++ b/game/textinput.hh @@ -1,3 +1,4 @@ +#pragma once #include <SDL.h> #include <string> diff --git a/game/unused/fftgraph.hh b/game/unused/fftgraph.hh index cd38fcb..5f6b8d9 100644 --- a/game/unused/fftgraph.hh +++ b/game/unused/fftgraph.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef PERFORMOUS_FFTGRAPH_HH #define PERFORMOUS_FFTGRAPH_HH diff --git a/game/xtime.hh b/game/xtime.hh index 99a7d63..ff3109b 100644 --- a/game/xtime.hh +++ b/game/xtime.hh @@ -1,3 +1,4 @@ +#pragma once #ifndef USNG_XTIME_H_INCLUDED #define USNG_XTIME_H_INCLUDED |