mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 20:30:05 +00:00
Add timeline manager
This commit is contained in:
parent
5453997208
commit
81eb3b1af3
3 changed files with 81 additions and 0 deletions
31
scwx-qt/source/scwx/qt/manager/timeline_manager.hpp
Normal file
31
scwx-qt/source/scwx/qt/manager/timeline_manager.hpp
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include <QObject>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace qt
|
||||
{
|
||||
namespace manager
|
||||
{
|
||||
|
||||
class TimelineManager : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit TimelineManager();
|
||||
~TimelineManager();
|
||||
|
||||
static std::shared_ptr<TimelineManager> 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