Create OTIO namespace in otioutils.h

This commit is contained in:
Thomas Wilshaw
2020-11-16 16:47:31 +00:00
parent 3b68f027f8
commit f9e2a83ee4
5 changed files with 33 additions and 1 deletions
+1
View File
@@ -37,6 +37,7 @@ set(OLIVE_SOURCES
common/lerp.h
common/memorypool.h
common/memorypool.cpp
common/otioutils.h
common/qtutils.h
common/qtutils.cpp
common/range.h
-1
View File
@@ -27,7 +27,6 @@
#define OLIVE_NAMESPACE_EXIT }
#define OTIO opentimelineio::OPENTIMELINEIO_VERSION
OLIVE_NAMESPACE_ENTER
+29
View File
@@ -0,0 +1,29 @@
/***
Olive - Non-Linear Video Editor
Copyright (C) 2019 Olive Team
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***/
#ifndef OTIOUTILS_H
#define OTIOUTILS_H
#ifdef USE_OTIO
#include <opentimelineio/version.h>
namespace OTIO = opentimelineio::OPENTIMELINEIO_VERSION;
#endif
#endif // OTIOUTILS
+2
View File
@@ -21,6 +21,8 @@
#ifndef OTIODECODER_H
#define OTIODECODER_H
#include "common/otioutils.h"
#include "project/project.h"
#include "task/project/load/loadbasetask.h"
+1
View File
@@ -24,6 +24,7 @@
#include <opentimelineio/timeline.h>
#include <opentimelineio/track.h>
#include "common/otioutils.h"
#include "project/project.h"
#include "task/task.h"