File indexing completed on 2024-06-16 04:16:21

0001 /*
0002  *  SPDX-FileCopyrightText: 2020 Saurabh Kumar <saurabhk660@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 #ifndef STORYBOARDDOCKER_H
0008 #define STORYBOARDDOCKER_H
0009 
0010 #include <QObject>
0011 #include <QVariant>
0012 
0013 
0014 /**
0015  * Storyboard Docker showing frames and comments
0016  */
0017 class StoryboardDockerPlugin : public QObject
0018 {
0019     Q_OBJECT
0020 public:
0021     StoryboardDockerPlugin(QObject *parent, const QVariantList &);
0022     ~StoryboardDockerPlugin() override;
0023 };
0024 
0025 #endif