obs-studio/UI/context-bar-controls-devices.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
375 B
C++
Raw Normal View History

#pragma once
#include <obs.hpp>
#include <string>
#include <QThread>
class DeviceToolbarPropertiesThread : public QThread {
Q_OBJECT
OBSSource source;
obs_properties_t *props;
void run() override;
public:
inline DeviceToolbarPropertiesThread(OBSSource source_)
: source(source_)
{
}
~DeviceToolbarPropertiesThread() override;
public slots:
void Ready();
};