Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_corelib_tools_qshareddata.cpp
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4#include <QSharedDataPointer>
5
6//! [0]
7class EmployeeData;
8//! [0]
9
11{
12public:
13 virtual EmployeeData *clone() const;
14};
15
16//! [1]
17template<>
18EmployeeData *QSharedDataPointer<EmployeeData>::clone()
19{
20 return d->clone();
21}
22//! [1]
virtual EmployeeData * clone() const