File indexing completed on 2024-04-28 04:49:50

0001 /*
0002     SPDX-FileCopyrightText: 1998-2007 Sebastian Trueg <trueg@k3b.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 
0007 #ifndef _K3BCDTEXTVALIDATOR_H_
0008 #define _K3BCDTEXTVALIDATOR_H_
0009 
0010 
0011 #include "k3bvalidators.h"
0012 #include "k3b_export.h"
0013 
0014 namespace K3b {
0015     class LIBK3B_EXPORT CdTextValidator : public Latin1Validator
0016     {
0017     public:
0018         explicit CdTextValidator(QObject *parent = 0);
0019         ~CdTextValidator() override;
0020 
0021         State validate( QString& input, int& pos ) const override;
0022     };
0023 }
0024 
0025 #endif