[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/debug.h>
#include <audio/algo/speex/Resampler.hpp>
#include <audio/algo/speex/debug.hpp>
#include <cmath>
#ifdef HAVE_SPEEX_DSP
#include <speex/speex_resampler.h>
#include <speex/speex_resampler.hpp>
#endif
namespace audio {

View File

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

View File

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

View File

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

View File

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

View File

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