[DEV] rm __class__
This commit is contained in:
parent
bc78a1858a
commit
151a3ddcf4
@ -13,9 +13,6 @@
|
||||
#include <cstring>
|
||||
#include <climits>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api"
|
||||
|
||||
// Static variable definitions.
|
||||
const std::vector<uint32_t>& audio::orchestra::genericSampleRate() {
|
||||
static std::vector<uint32_t> list;
|
||||
|
@ -11,9 +11,6 @@
|
||||
#include <etk/stdTools.h>
|
||||
#include <iostream>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "DeviceInfo"
|
||||
|
||||
void audio::orchestra::DeviceInfo::display(int32_t _tabNumber) const {
|
||||
std::string space;
|
||||
for (int32_t iii=0; iii<_tabNumber; ++iii) {
|
||||
|
@ -19,9 +19,6 @@
|
||||
#include <audio/orchestra/api/Jack.h>
|
||||
#include <audio/orchestra/api/Pulse.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "Interface"
|
||||
|
||||
std::vector<std::string> audio::orchestra::Interface::getListApi() {
|
||||
std::vector<std::string> apis;
|
||||
// The order here will control the order of RtAudio's API search in
|
||||
|
@ -27,8 +27,6 @@ extern "C" {
|
||||
#include <math.h>
|
||||
#include <poll.h>
|
||||
}
|
||||
#undef __class__
|
||||
#define __class__ "api::Alsa"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Alsa::create() {
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Alsa());
|
||||
|
@ -15,9 +15,6 @@
|
||||
#include <audio/orchestra/api/Android.h>
|
||||
#include <limits.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Android"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Android::create() {
|
||||
ATA_INFO("Create Android device ... ");
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Android());
|
||||
|
@ -38,9 +38,6 @@ std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Asio::create() {
|
||||
#include "asiodrivers.h"
|
||||
#include <cmath>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Asio"
|
||||
|
||||
static AsioDrivers drivers;
|
||||
static ASIOCallbacks asioCallbacks;
|
||||
static ASIODriverInfo driverInfo;
|
||||
|
@ -24,9 +24,6 @@ std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Core::create() {
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Core());
|
||||
}
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Core"
|
||||
|
||||
namespace audio {
|
||||
namespace orchestra {
|
||||
namespace api {
|
||||
|
@ -16,9 +16,6 @@
|
||||
#include <limits.h>
|
||||
#include <audio/orchestra/api/CoreIos.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::CoreIos"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::CoreIos::create() {
|
||||
ATA_INFO("Create CoreIos device ... ");
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::CoreIos());
|
||||
|
@ -12,9 +12,6 @@
|
||||
#include <ethread/tools.h>
|
||||
#include <audio/orchestra/api/Ds.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Ds"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Ds::create() {
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Ds());
|
||||
}
|
||||
|
@ -9,9 +9,6 @@
|
||||
#include <audio/orchestra/api/Dummy.h>
|
||||
#include <audio/orchestra/debug.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Dummy"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Dummy::create() {
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Dummy());
|
||||
}
|
||||
|
@ -19,9 +19,6 @@
|
||||
#include <audio/orchestra/api/PulseDeviceList.h>
|
||||
#include <audio/orchestra/api/Pulse.h>
|
||||
|
||||
#undef __class__
|
||||
#define __class__ "api::Pulse"
|
||||
|
||||
std::shared_ptr<audio::orchestra::Api> audio::orchestra::api::Pulse::create() {
|
||||
return std::shared_ptr<audio::orchestra::Api>(new audio::orchestra::api::Pulse());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user