summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_resources.cpp
blob: 04ecf810ec1d57a1d567467e0edb7f0d670b9b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [4]
QResource::registerResource("/path/to/myresource.rcc");
//! [4]


//! [5]
MyClass::MyClass() : BaseClass()
{
    Q_INIT_RESOURCE(resources);

    QFile file(":/myfile.dat");
    ...
}
//! [5]