1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-02-13 21:23:41 -05:00
sdrangel/sdrbase/util/stringlist.h

16 lines
373 B
C
Raw Normal View History

#ifndef SDRBASE_UTIL_STRINGLIST_H_
#define SDRBASE_UTIL_STRINGLIST_H_
#include <QStringList>
2026-02-01 17:15:47 +01:00
#include "export.h"
class SDRBASE_API StringListUtil {
2026-02-01 17:15:47 +01:00
public:
static bool containsAll(const QStringList &haystack, const QStringList &needles);
static bool containsAny(const QStringList &haystack, const QStringList &needles);
2026-02-01 17:15:47 +01:00
};
#endif // SDRBASE_UTIL_STRINGLIST_H_