scenepic 1.1.0
3D Visualization Made Easy
zip.h
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#ifndef _SCENEPIC_ZIP_H_
5#define _SCENEPIC_ZIP_H_
6
7#include <cstdint>
8#include <vector>
9
10namespace scenepic
11{
17 std::vector<std::uint8_t>
18 deflate(const std::uint8_t* data, std::size_t data_length);
19
26 std::vector<std::uint8_t> inflate(
27 const std::uint8_t* data,
28 std::size_t source_length,
29 std::size_t dest_length);
30} // namespace scenepic
31
32#endif
Definition: audio_track.h:14
std::vector< std::uint8_t > deflate(const std::uint8_t *data, std::size_t data_length)
Deflate a byte array.
std::vector< std::uint8_t > inflate(const std::uint8_t *data, std::size_t source_length, std::size_t dest_length)
Inflates a byte array created by.