Skip to content

Commit ed510cc

Browse files
committed
Update namespace to hao
1 parent b51fde6 commit ed510cc

File tree

15 files changed

+32
-32
lines changed

15 files changed

+32
-32
lines changed

include/hao/plugin_base/common/audio_module_visitor.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "kompositum/leaf.h"
77
#include "kompositum/visitor.h"
88

9-
namespace ha::plugin_base::common {
9+
namespace hao::plugin_base::common {
1010

1111
//-----------------------------------------------------------------------------
1212
/**
@@ -60,4 +60,4 @@ void audio_module_visitor<Func>::visit(Kompositum::Composite* composite)
6060
}
6161

6262
//-----------------------------------------------------------------------------
63-
} // namespace ha::plugin_base::common
63+
} // namespace hao::plugin_base::common

include/hao/plugin_base/common/context.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "hao/plugin_base/core/types.h"
88
#include "kompositum/component.h"
99

10-
namespace ha::plugin_base::common {
10+
namespace hao::plugin_base::common {
1111

1212
//-----------------------------------------------------------------------------
1313
/**
@@ -39,4 +39,4 @@ void setup_processing(context& cx, audio_modules::ProcessSetup& setup);
3939
bool process_audio(context& cx, AudioBusses& host_buffers, i32 numSamples);
4040

4141
//-----------------------------------------------------------------------------
42-
} // namespace ha::plugin_base::common
42+
} // namespace hao::plugin_base::common

include/hao/plugin_base/common/project_time_simulator.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include "hao/plugin_base/core/types.h"
66

7-
namespace ha::plugin_base {
7+
namespace hao::plugin_base {
88

99
/**
1010
* @brief project_time_simulator
@@ -50,4 +50,4 @@ struct project_time_simulator
5050
};
5151

5252
//-----------------------------------------------------------------------------
53-
} // namespace ha::plugin_base
53+
} // namespace hao::plugin_base

include/hao/plugin_base/core/types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <map>
77
#include <memory>
88

9-
namespace ha {
9+
namespace hao {
1010

1111
//-----------------------------------------------------------------------------
1212
namespace audio_modules {
@@ -28,4 +28,4 @@ using audio_modules_map = std::map<IDType, audio_module_ptr>;
2828

2929
//-----------------------------------------------------------------------------
3030
} // namespace plugin_base
31-
} // namespace ha
31+
} // namespace hao

include/hao/plugin_base/vst3/component/audio_processing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
#include "hao/plugin_base/common/context.h"
44
#include "pluginterfaces/vst/ivstaudioprocessor.h"
55

6-
namespace ha::plugin_base::vst3 {
6+
namespace hao::plugin_base::vst3 {
77

88
//-----------------------------------------------------------------------------
99
bool process_audio(common::context& context,
1010
Steinberg::Vst::ProcessData& processData);
1111

1212
//-----------------------------------------------------------------------------
13-
} // namespace ha::plugin_base::vst3
13+
} // namespace hao::plugin_base::vst3

include/hao/plugin_base/vst3/component/audio_setup.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
#include "hao/plugin_base/common/context.h"
44
#include "pluginterfaces/vst/ivstaudioprocessor.h"
55

6-
namespace ha::plugin_base::vst3 {
6+
namespace hao::plugin_base::vst3 {
77

88
//-----------------------------------------------------------------------------
99
bool setup_processing(common::context& context,
1010
Steinberg::Vst::ProcessSetup& processSetup,
1111
Steinberg::Vst::IComponent* component);
1212

1313
//-----------------------------------------------------------------------------
14-
} // namespace ha::plugin_base::vst3
14+
} // namespace hao::plugin_base::vst3

include/hao/plugin_base/vst3/controller/generic_param.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
#include <functional>
1111
#include <memory>
1212

13-
namespace ha::audio_modules {
13+
namespace hao::audio_modules {
1414
enum class ModuleTags;
1515
struct ParamInfo;
16-
} // namespace ha::audio_modules
16+
} // namespace hao::audio_modules
1717

18-
namespace ha::plugin_base::vst3 {
18+
namespace hao::plugin_base::vst3 {
1919

2020
//-----------------------------------------------------------------------------
2121
class GenericParam : public Steinberg::Vst::Parameter
@@ -79,4 +79,4 @@ class GenericParam : public Steinberg::Vst::Parameter
7979
};
8080

8181
//-----------------------------------------------------------------------------
82-
} // namespace ha::plugin_base::vst3
82+
} // namespace hao::plugin_base::vst3

source/common/context.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include "kompositum/builder.h"
77
#include "slicing.h"
88

9-
namespace ha::plugin_base::common {
9+
namespace hao::plugin_base::common {
1010

1111
//-----------------------------------------------------------------------------
1212
void add_param_change(common::context& cx,
@@ -111,4 +111,4 @@ bool process_audio(common::context& cx,
111111
return true;
112112
}
113113
//-----------------------------------------------------------------------------
114-
} // namespace ha::plugin_base::common
114+
} // namespace hao::plugin_base::common

source/common/project_time_simulator.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
#include "hao/plugin_base/common/project_time_simulator.h"
44

5-
namespace ha::plugin_base {
5+
namespace hao::plugin_base {
66
namespace {
77

88
//-----------------------------------------------------------------------------
@@ -58,4 +58,4 @@ void project_time_simulator::update_tempo(context& cx, real value)
5858

5959
//-----------------------------------------------------------------------------
6060

61-
} // namespace ha::plugin_base
61+
} // namespace hao::plugin_base

source/common/slicing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <cstddef>
55
#include <numeric>
66

7-
namespace ha::plugin_base::common {
7+
namespace hao::plugin_base::common {
88

99
//-----------------------------------------------------------------------------
1010
template <typename T, typename Func, std::size_t N = 32>
@@ -25,4 +25,4 @@ void slice(T const _total, const Func& func)
2525
}
2626

2727
//-----------------------------------------------------------------------------
28-
} // namespace ha::plugin_base::common
28+
} // namespace hao::plugin_base::common

0 commit comments

Comments
 (0)