summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/jabber/libiris/iris/xmpp-core/td.h
blob: b636e190f50a7290434a4c65f9b3d1b1ad496d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TESTDEBUG_H
#define TESTDEBUG_H

#include<qdom.h>

class TD
{
public:
	TD();
	~TD();

	static void msg(const QString &);
	static void outgoingTag(const QString &);
	static void incomingTag(const QString &);
	static void outgoingXml(const QDomElement &);
	static void incomingXml(const QDomElement &);
};

#endif