Files @ 5768326d7b6e
Branch filter:

Location: libtransport.git/include/Swiften/Serializer/PayloadSerializers/GatewayPayloadSerializer.h

Vitaly Takmazov
cmake: cleanup configuration

* rename CMake modules to follow CMAKE_MODULE_PATH matching rules
* fix git ignore rules to not ignore CMake modules
* add CMake module to find jsoncpp without pkg-config
* drop unused/outdated modules
/*
 * Copyright (c) 2011 Jan Kaluza
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <Swiften/Serializer/GenericPayloadSerializer.h>
#include <Swiften/Elements/GatewayPayload.h>

#include "Swiften/SwiftenCompat.h"

namespace Swift {
	class GatewayPayloadSerializer : public GenericPayloadSerializer<GatewayPayload> {
		public:
			GatewayPayloadSerializer();

			virtual std::string serializePayload(SWIFTEN_SHRPTR_NAMESPACE::shared_ptr<GatewayPayload> item)  const;
	};
}