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]
7
class
EmployeeData
;
8
//! [0]
9
10
class
EmployeeData
11
{
12
public
:
13
virtual
EmployeeData
*
clone
()
const
;
14
};
15
16
//! [1]
17
template
<>
18
EmployeeData *QSharedDataPointer<EmployeeData>::clone()
19
{
20
return
d->clone();
21
}
22
//! [1]
EmployeeData
[0]
Definition
src_corelib_tools_qshareddata.cpp:11
EmployeeData::clone
virtual EmployeeData * clone() const
qtbase
src
corelib
doc
snippets
code
src_corelib_tools_qshareddata.cpp
Generated on
for Qt by
1.14.0