diff --git a/include/Swiften/Elements/InvisiblePayload.h b/include/Swiften/Elements/InvisiblePayload.h new file mode 100644 index 0000000000000000000000000000000000000000..4966eddba99983e2908df4b4b7371e2f425223ea --- /dev/null +++ b/include/Swiften/Elements/InvisiblePayload.h @@ -0,0 +1,25 @@ +/* + * Copyright (c) 2011 Jan Kaluza + * Licensed under the Simplified BSD license. + * See Documentation/Licenses/BSD-simplified.txt for more information. + */ + +#pragma once + +#include +#include +#include + +#include + +// This payload is NOT part of ANY XEP and it is only +// libtransport related extension. +namespace Swift { + class InvisiblePayload : public Payload { + public: + typedef boost::shared_ptr ref; + + public: + InvisiblePayload(); + }; +}