mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 19:20:05 +00:00
Media Manager stub
This commit is contained in:
parent
9830caebeb
commit
a89c20c697
3 changed files with 79 additions and 0 deletions
32
scwx-qt/source/scwx/qt/manager/media_manager.hpp
Normal file
32
scwx-qt/source/scwx/qt/manager/media_manager.hpp
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <QObject>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace manager
|
||||
{
|
||||
|
||||
class MediaManager : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY_MOVE(MediaManager)
|
||||
|
||||
public:
|
||||
explicit MediaManager();
|
||||
~MediaManager();
|
||||
|
||||
static std::shared_ptr<MediaManager> Instance();
|
||||
|
||||
private:
|
||||
class Impl;
|
||||
std::unique_ptr<Impl> p;
|
||||
};
|
||||
|
||||
} // namespace manager
|
||||
} // namespace qt
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue