#include <QtCore/qnamespace.h>
#ifndef QNAMESPACE_H
namespace Qt{
enum MatchFlag{
MatchExactly = 0,
MatchContains = 1,
MatchStartsWith = 2,
MatchEndsWith = 3,
MatchRegExp = 4,
MatchWildcard = 5,
MatchFixedString = 8,
MatchCaseSensitive = 16,
MatchWrap = 32,
MatchRecursive = 64,
};
};
#endif // QNAMESPACE_H