obs-studio/UI/window-main.hpp
jp9000 f53df7da64 clang-format: Apply formatting
Code submissions have continually suffered from formatting
inconsistencies that constantly have to be addressed.  Using
clang-format simplifies this by making code formatting more consistent,
and allows automation of the code formatting so that maintainers can
focus more on the code itself instead of code formatting.
2019-06-23 23:49:10 -07:00

19 lines
357 B
C++

#pragma once
#include <QMainWindow>
#include <util/config-file.h>
class OBSMainWindow : public QMainWindow {
Q_OBJECT
public:
inline OBSMainWindow(QWidget *parent) : QMainWindow(parent) {}
virtual config_t *Config() const = 0;
virtual void OBSInit() = 0;
virtual int GetProfilePath(char *path, size_t size,
const char *file) const = 0;
};