summaryrefslogtreecommitdiffstats
path: root/src/runtime/Qt3DSPresentation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/Qt3DSPresentation.h')
-rw-r--r--src/runtime/Qt3DSPresentation.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/runtime/Qt3DSPresentation.h b/src/runtime/Qt3DSPresentation.h
index 5917d7b..8bb66ae 100644
--- a/src/runtime/Qt3DSPresentation.h
+++ b/src/runtime/Qt3DSPresentation.h
@@ -108,6 +108,7 @@ protected:
TTimeUnit m_Offset;
TTimeUnit m_LocalTime;
TTimeUnit m_PreviousGlobalTime;
+ int m_UIPVersion;
bool m_Paused;
bool m_OffsetInvalid;
bool m_Active;
@@ -220,6 +221,15 @@ public: // Full file paths
QString GetFilePath() const override;
QString getProjectPath() const override;
+ void setUIPVersion(int version) override
+ {
+ m_UIPVersion = version;
+ }
+ int getUIPVersion() const override
+ {
+ return m_UIPVersion;
+ }
+
private: // Disabled Copy Construction
CPresentation(CPresentation &);
CPresentation &operator=(const CPresentation &);