[DEV] replace 'include guard' with 'pragma once'

This commit is contained in:
Edouard DUPIN 2016-02-02 21:18:54 +01:00
parent bb04928dad
commit 6fd08dcaf7
7 changed files with 7 additions and 40 deletions

View File

@ -5,10 +5,7 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_LOADED_FILE_H__
#define __EWOLSA_LOADED_FILE_H__
#pragma once
#include <etk/types.h>
#include <thread>
@ -50,5 +47,3 @@ namespace audio {
}
}
#endif

View File

@ -5,9 +5,7 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_DEBUG_H__
#define __EWOLSA_DEBUG_H__
#pragma once
#include <etk/log.h>
@ -43,5 +41,3 @@ namespace audio {
} while (0)
#endif

View File

@ -5,13 +5,10 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_DEC_OGG_H__
#define __EWOLSA_DEC_OGG_H__
#pragma once
#include <etk/types.h>
namespace audio {
namespace ess {
namespace ogg {
@ -21,4 +18,3 @@ namespace audio {
}
}
#endif

View File

@ -5,13 +5,10 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_DEC_WAV_H__
#define __EWOLSA_DEC_WAV_H__
#pragma once
#include <etk/types.h>
namespace audio {
namespace ess {
namespace wav {
@ -20,5 +17,3 @@ namespace audio {
}
}
#endif

View File

@ -5,10 +5,7 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_EFFECTS_H__
#define __EWOLSA_EFFECTS_H__
#pragma once
#include <etk/types.h>
#include <etk/math/Vector3D.h>
@ -47,5 +44,3 @@ namespace audio {
}
}
#endif

View File

@ -5,10 +5,7 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_H__
#define __EWOLSA_H__
#pragma once
#include <etk/types.h>
#include <audio/ess/effects.h>
@ -39,5 +36,3 @@ namespace audio {
}
}
#endif

View File

@ -5,10 +5,7 @@
*
* @license APACHE v2.0 (see license file)
*/
#ifndef __EWOLSA_MUSIC_H__
#define __EWOLSA_MUSIC_H__
#pragma once
#include <etk/types.h>
#include <audio/river/Interface.h>
@ -48,5 +45,3 @@ namespace audio {
}
}
#endif