aboutsummaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/explicitlysharedemployee/main.cpp
blob: c42343732537bddb957a0e349171ce74ed20ee45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "employee.h"

int main()
{
    {
        Employee e1(10, "Albrecht Durer");
        Employee e2 = e1;
        e1.setName("Hans Holbein");
    }
}