File indexing completed on 2024-05-26 04:32:38

0001 /*
0002  *  SPDX-FileCopyrightText: 2020 Dmitrii Utkin <loentar@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.1-only
0005  */
0006 
0007 #include "recorder_const.h"
0008 
0009 #include <QRegularExpression>
0010 
0011 namespace RecorderConst
0012 {
0013 
0014 QRegularExpression snapshotFilePatternFor(const QString &extension)
0015 {
0016     return QRegularExpression("^([0-9]{7})\\." % extension % "$");
0017 }
0018 
0019 }