Krita Source Code Documentation
Loading...
Searching...
No Matches
recorder_format.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021 Dmitrii Utkin <loentar@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 */
6
7#ifndef RECORDER_FORMAT_H
8#define RECORDER_FORMAT_H
9
10#include <QLatin1String>
11
13{
14 JPEG,
15 PNG
16};
17
18namespace RecorderFormatInfo
19{
20
21QLatin1String fileExtension(RecorderFormat format);
22
23QLatin1String fileFormat(RecorderFormat format);
24
25}
26
27#endif // RECORDER_FORMAT_H
QLatin1String fileFormat(RecorderFormat format)
QLatin1String fileExtension(RecorderFormat format)
RecorderFormat