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