blob: c40499af28d98f2b8d8ac4b2606eaeaa43b06868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SWIFTEN_StartTLSRequest_H
#define SWIFTEN_StartTLSRequest_H
#include "Swiften/Elements/Element.h"
namespace Swift {
class StartTLSRequest : public Element
{
public:
StartTLSRequest() {}
};
}
#endif
|