From bf078a928e57e8d662aa69271e8fca49da76b358 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Mon, 5 Aug 2019 02:12:44 -0400 Subject: [PATCH] AudioDeviceInfo.h: Add `namespace openshot {}` --- include/AudioDeviceInfo.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/include/AudioDeviceInfo.h b/include/AudioDeviceInfo.h index bbdbd81b..454bf923 100644 --- a/include/AudioDeviceInfo.h +++ b/include/AudioDeviceInfo.h @@ -37,10 +37,11 @@ * * The type and name of the audio device. */ -struct AudioDeviceInfo -{ - std::string name; - std::string type; -}; - +namespace openshot { + struct AudioDeviceInfo + { + std::string name; + std::string type; + }; +} #endif