Add "nam" namespace

This commit is contained in:
Mike Oliphant
2024-08-17 11:23:52 -07:00
parent 1dc54bc5f9
commit 61bbce1e2a
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -43,12 +43,12 @@ namespace NAM {
struct LV2SwitchModelMsg {
LV2WorkType type;
char path[MAX_FILE_NAME];
::DSP* model;
nam::DSP* model;
};
struct LV2FreeModelMsg {
LV2WorkType type;
::DSP* model;
nam::DSP* model;
};
class Plugin {
@@ -70,7 +70,7 @@ namespace NAM {
LV2_Log_Logger logger = {};
LV2_Worker_Schedule* schedule = nullptr;
::DSP* currentModel = nullptr;
nam::DSP* currentModel = nullptr;
std::string currentModelPath;
float prevDCInput = 0;
float prevDCOutput = 0;