summaryrefslogtreecommitdiffstats
blob: db761c321f29e4fe1bfa575c917f91b264c1f47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2012-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <zlib.h>

#include <Swiften/Compress/ZLibCodecompressor.h>

namespace Swift {
	struct ZLibCodecompressor::Private {
		z_stream stream;
	};
}