File indexing completed on 2024-05-19 16:31:57

0001 /*
0002  *  SPDX-FileCopyrightText: 2009 David Hubner <hubnerd@ntlworld.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  *
0006  */
0007 
0008 #ifndef QVLISTLAYOUT
0009 #define QVLISTLAYOUT
0010 
0011 #include <QVBoxLayout>
0012 
0013 class QVListLayout : public QVBoxLayout
0014 {
0015 public:
0016     QVListLayout();
0017     void applyQListToLayout(const QStringList &);
0018 };
0019 
0020 #endif // QVLISTLAYOUT