AudioDeviceInfo.h: Add namespace openshot {}

This commit is contained in:
FeRD (Frank Dana)
2019-08-05 02:12:44 -04:00
parent 91dbcbc7ef
commit bf078a928e

View File

@@ -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