Added ISO639-2 decoding in JSON-formatted metadata output

This commit is contained in:
Thulinma 2016-07-25 13:24:25 +02:00
parent 4cef8d7cf5
commit bfa9882e8c
4 changed files with 538 additions and 0 deletions

12
lib/langcodes.h Normal file
View file

@ -0,0 +1,12 @@
#include <string>
namespace Encodings {
class ISO639{
public:
static std::string decode(const std::string & lang);
};
}