mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
16 lines
335 B
C++
16 lines
335 B
C++
#pragma once
|
|
#include "export-symbol-helper.hpp"
|
|
|
|
#include <obs-data.h>
|
|
#include <QList>
|
|
#include <string>
|
|
|
|
namespace advss {
|
|
|
|
void SaveSplitterPos(const QList<int> &sizes, obs_data_t *obj,
|
|
const std::string &name);
|
|
void LoadSplitterPos(QList<int> &sizes, obs_data_t *obj,
|
|
const std::string &name);
|
|
|
|
} // namespace advss
|