kdelibs/threadweaver/Tests/AppendCharacterAndVerifyJob.h

18 lines
385 B
C
Raw Normal View History

2014-11-13 01:04:59 +02:00
#ifndef APPENDCHARACTERANDVERIFYJOB_H
#define APPENDCHARACTERANDVERIFYJOB_H
#include <AppendCharacterJob.h>
class AppendCharacterAndVerifyJob : public AppendCharacterJob
{
public:
AppendCharacterAndVerifyJob();
void setValues(QChar c, QString *stringref, const QString& expected);
void run();
private:
QString m_expected;
};
#endif // APPENDCHARACTERANDVERIFYJOB_H