mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-03-02 05:10:06 -05:00
14 lines
356 B
C++
14 lines
356 B
C++
#ifndef SDRBASE_UTIL_STRINGLIST_H_
|
|
#define SDRBASE_UTIL_STRINGLIST_H_
|
|
|
|
#include <QStringList>
|
|
|
|
namespace StringListUtil {
|
|
|
|
static bool containsAll(const QStringList &haystack, const QStringList &needles);
|
|
static bool containsAny(const QStringList &haystack, const QStringList &needles);
|
|
|
|
} // namespace StringListUtil
|
|
|
|
#endif // SDRBASE_UTIL_STRINGLIST_H_
|