mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
17 lines
385 B
C++
17 lines
385 B
C++
#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
|