File indexing completed on 2024-12-22 04:40:11
0001 /* 0002 SPDX-FileCopyrightText: 2020-2022 Mladen Milinkovic <max@smoothware.net> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #include "richdocumentptr.h" 0008 0009 using namespace SubtitleComposer; 0010 0011 0012 RichDocumentPtr::RichDocumentPtr(RichDocument *doc) 0013 : m_doc(doc) 0014 { 0015 qRegisterMetaType<RichDocumentPtr>("RichDocumentPtr"); 0016 } 0017 0018 RichDocumentPtr::RichDocumentPtr(const RichDocumentPtr &other) 0019 : m_doc(other.m_doc) 0020 { 0021 } 0022 0023 RichDocumentPtr::~RichDocumentPtr() 0024 { 0025 }