added memory includes
This commit is contained in:
+1
-1
@@ -256,7 +256,7 @@ void OliveGlobal::finished_initialize() {
|
||||
} else {
|
||||
// if we are not loading a project on launch and are running a release build, open the demo notice dialog
|
||||
#ifndef QT_DEBUG
|
||||
DemoNotice* d = new DemoNotice(Olive::MainWindow);
|
||||
DemoNotice* d = new DemoNotice(olive::MainWindow);
|
||||
connect(d, SIGNAL(finished(int)), d, SLOT(deleteLater()));
|
||||
d->open();
|
||||
#endif
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef OLIVEGLOBAL_H
|
||||
#define OLIVEGLOBAL_H
|
||||
|
||||
#include <memory>
|
||||
#include "project/undo.h"
|
||||
|
||||
#include <QTimer>
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef CACHER_H
|
||||
#define CACHER_H
|
||||
|
||||
#include <memory>
|
||||
#include <QThread>
|
||||
#include <QVector>
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef CLIP_H
|
||||
#define CLIP_H
|
||||
|
||||
#include <memory>
|
||||
#include <QWaitCondition>
|
||||
#include <QMutex>
|
||||
#include <QVector>
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef EFFECT_H
|
||||
#define EFFECT_H
|
||||
|
||||
#include <memory>
|
||||
#include <QObject>
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef FOOTAGE_H
|
||||
#define FOOTAGE_H
|
||||
|
||||
#include <memory>
|
||||
#include <QString>
|
||||
#include <QVector>
|
||||
#include <QMetaType>
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
|
||||
#include <QString>
|
||||
#include <QPainter>
|
||||
#include <memory>
|
||||
|
||||
class Sequence;
|
||||
using SequencePtr = std::shared_ptr<Sequence>;
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
#ifndef SEQUENCE_H
|
||||
#define SEQUENCE_H
|
||||
|
||||
#include <memory>
|
||||
#include <QVector>
|
||||
|
||||
#include "project/clip.h"
|
||||
|
||||
Reference in New Issue
Block a user