mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-02-13 13:13:41 -05:00
16 lines
373 B
C++
16 lines
373 B
C++
#ifndef SDRBASE_UTIL_STRINGLIST_H_
|
|
#define SDRBASE_UTIL_STRINGLIST_H_
|
|
|
|
#include <QStringList>
|
|
|
|
#include "export.h"
|
|
class SDRBASE_API StringListUtil {
|
|
|
|
public:
|
|
static bool containsAll(const QStringList &haystack, const QStringList &needles);
|
|
static bool containsAny(const QStringList &haystack, const QStringList &needles);
|
|
|
|
};
|
|
|
|
#endif // SDRBASE_UTIL_STRINGLIST_H_
|