image/qpictureformatplugin.cpp

Switch to Source codePreprocessed file
LineSource CodeCoverage
1 -
2 -
3 -
4QPictureFormatPlugin::QPictureFormatPlugin(QObject *parent) -
5 : QObject(parent) -
6{ -
7}
never executed: }
0
8 -
9 -
10 -
11 -
12 -
13 -
14 -
15QPictureFormatPlugin::~QPictureFormatPlugin() -
16{ -
17} -
18bool QPictureFormatPlugin::loadPicture(const QString &format, const QString &fileName, QPicture *picture) -
19{ -
20 (void)format; -
21 (void)fileName; -
22 (void)picture; -
23 return false;
never executed: return false;
0
24} -
25bool QPictureFormatPlugin::savePicture(const QString &format, const QString &fileName, const QPicture &picture) -
26{ -
27 (void)format; -
28 (void)fileName; -
29 (void)picture; -
30 return false;
never executed: return false;
0
31} -
32 -
33 -
34 -
35 -
36 -
Switch to Source codePreprocessed file

Generated by Squish Coco Non-Commercial