Utils: Add Obs utils namespace

This commit is contained in:
tt2468 2021-05-08 00:54:35 -07:00
parent 8a18d3603c
commit 600505b60a
3 changed files with 9 additions and 1 deletions

View File

@ -81,7 +81,8 @@ set(obs-websocket_SOURCES
src/forms/SettingsDialog.cpp
src/utils/Json.cpp
src/utils/Crypto.cpp
src/utils/Platform.cpp)
src/utils/Platform.cpp
src/utils/Obs.cpp)
set(obs-websocket_HEADERS
src/obs-websocket.h

3
src/utils/Obs.cpp Normal file
View File

@ -0,0 +1,3 @@
#include "Utils.h"
#include "../plugin-macros.generated.h"

View File

@ -24,4 +24,8 @@ namespace Utils {
std::string GetLocalAddress();
QString GetCommandLineArgument(QString arg);
}
namespace Obs {
;
}
}