1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef MATCHER_BENCHMARK #define MATCHER_BENCHMARK #include <QObject> class MatcherBenchmark : public QObject { Q_OBJECT private slots: void qstringcontains(); void qstringmatcher(); void qregexp(); void qregularexpressionmatch(); void stdregex(); void cregex(); void boostregex(); }; #endif