summaryrefslogtreecommitdiffstats
blob: 2adc4b6b895b74ec245b2453ff74687532db225c (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;
    };
}