
There's no reason to catch DEFAULT there anyways, most likely if someone adds a new format to the enum, we want them to specify a new extension for it.
39 lines
823 B
C++
39 lines
823 B
C++
/*
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
|
|
#ifndef COMPRESSION_HPP_INCLUDED
|
|
#define COMPRESSION_HPP_INCLUDED
|
|
|
|
#include <string>
|
|
|
|
namespace compression {
|
|
enum format {
|
|
NONE,
|
|
GZIP,
|
|
BZIP2
|
|
};
|
|
|
|
inline std::string format_extension(format compression_format)
|
|
{
|
|
switch(compression_format) {
|
|
case GZIP:
|
|
return ".gz";
|
|
case BZIP2:
|
|
return ".bz2";
|
|
case NONE:
|
|
return "";
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|