summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/tests/kopetepasswordtest_program.h
blob: 507da2a12703604288c7fadc011b4105fa89c445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef KOPETEPASSWORDTEST_H
#define KOPETEPASSWORDTEST_H

#include <qobject.h>

class PasswordRetriever : public QObject
{
	Q_OBJECT
public:
	QString password;
public slots:
	void timer();
	void gotPassword( const QString & );
};

#endif