[DEV/API] change .h in .hpp

This commit is contained in:
Edouard DUPIN 2016-10-02 21:24:13 +02:00
parent 10905293f7
commit 5ee32982d4
6 changed files with 13 additions and 13 deletions

View File

@ -5,11 +5,11 @@
*/ */
#include <audio/algo/speex/Resampler.h> #include <audio/algo/speex/Resampler.hpp>
#include <audio/algo/speex/debug.h> #include <audio/algo/speex/debug.hpp>
#include <cmath> #include <cmath>
#ifdef HAVE_SPEEX_DSP #ifdef HAVE_SPEEX_DSP
#include <speex/speex_resampler.h> #include <speex/speex_resampler.hpp>
#endif #endif
namespace audio { namespace audio {

View File

@ -5,10 +5,10 @@
*/ */
#pragma once #pragma once
#include <etk/types.h> #include <etk/types.hpp>
#include <audio/format.h> #include <audio/format.hpp>
#include <chrono> #include <chrono>
#include <ememory/memory.h> #include <ememory/memory.hpp>
#include <vector> #include <vector>
namespace audio { namespace audio {

View File

@ -4,7 +4,7 @@
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
#include "debug.h" #include "debug.hpp"
int32_t audio::algo::speex::getLogId() { int32_t audio::algo::speex::getLogId() {

View File

@ -5,7 +5,7 @@
*/ */
#pragma once #pragma once
#include <elog/log.h> #include <elog/log.hpp>
namespace audio { namespace audio {
namespace algo { namespace algo {

View File

@ -31,7 +31,7 @@ def create(target, module_name):
'audio/algo/speex/Resampler.cpp' 'audio/algo/speex/Resampler.cpp'
]) ])
my_module.add_header_file([ my_module.add_header_file([
'audio/algo/speex/Resampler.h' 'audio/algo/speex/Resampler.hpp'
]) ])
my_module.add_depend(['etk', 'audio']) my_module.add_depend(['etk', 'audio'])
my_module.add_optionnal_depend('speex-dsp', ["c++", "-DHAVE_SPEEX_DSP"]) my_module.add_optionnal_depend('speex-dsp', ["c++", "-DHAVE_SPEEX_DSP"])

View File

@ -4,10 +4,10 @@
* @license APACHE v2.0 (see license file) * @license APACHE v2.0 (see license file)
*/ */
#include <test-debug/debug.h> #include <test-debug/debug.hpp>
#include <etk/etk.h> #include <etk/etk.hpp>
#include <audio/algo/speex/Resampler.h> #include <audio/algo/speex/Resampler.hpp>
#include <etk/os/FSNode.h> #include <etk/os/FSNode.hpp>
#include <chrono> #include <chrono>
#include <unistd.h> #include <unistd.h>