This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/iris-legacy/iris/xmpp-core/td.h
2025-12-25 01:38:25 +05:00

20 lines
322 B
C++

#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