Krita Source Code Documentation
Loading...
Searching...
No Matches
recorder_const.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2020 Dmitrii Utkin <loentar@gmail.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 */
6
7#include "recorder_const.h"
8
9#include <QRegularExpression>
10
12{
13
14QRegularExpression snapshotFilePatternFor(const QString &extension)
15{
16 return QRegularExpression("^([0-9]{7})\\." % extension % "$");
17}
18
19}
QRegularExpression snapshotFilePatternFor(const QString &extension)