Add timeline manager

This commit is contained in:
Dan Paulat 2023-05-14 08:36:21 -05:00
parent 5453997208
commit 81eb3b1af3
3 changed files with 81 additions and 0 deletions

View 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