summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/doc_src_resources.cpp
blob: 5df085d145dffa0f5d4e9d3af49498499eba104f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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]


//! [6]
int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Q_INIT_RESOURCE(graphlib);

    QFile file(":/graph.png");
    ...
    return app.exec();
}
//! [6]