The Battle for Wesnoth
1.15.10+dev
serialization
compression.hpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2014 - 2018 by David White <dave@whitevine.net>
3
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4
5
This program is free software; you can redistribute it and/or modify
6
it under the terms of the GNU General Public License as published by
7
the Free Software Foundation; either version 2 of the License, or
8
(at your option) any later version.
9
This program is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY.
11
12
See the COPYING file for more details.
13
*/
14
15
#pragma once
16
17
#include <string>
18
19
namespace
compression
{
20
enum
format
{
21
NONE
,
22
GZIP
,
23
BZIP2
24
};
25
26
inline
std::string
format_extension
(
format
compression_format)
27
{
28
switch
(compression_format) {
29
case
GZIP
:
30
return
".gz"
;
31
case
BZIP2
:
32
return
".bz2"
;
33
case
NONE
:
34
return
""
;
35
}
36
return
""
;
37
}
38
}
compression
Definition:
compression.hpp:19
compression::GZIP
Definition:
compression.hpp:22
compression::BZIP2
Definition:
compression.hpp:23
compression::NONE
Definition:
compression.hpp:21
compression::format_extension
std::string format_extension(format compression_format)
Definition:
compression.hpp:26
compression::format
format
Definition:
compression.hpp:20
Generated by
1.8.13