goldendict-ng/src/dict/belarusiantranslit.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
419 B
C++
Raw Normal View History

2013-01-18 19:21:56 +00:00
/* This file is (c) 2013 Maksim Tamkovicz <quendimax@gmail.com>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __BELARUSIANTRANSLIT_HH_INCLUDED__
#define __BELARUSIANTRANSLIT_HH_INCLUDED__
#include <vector>
#include "dictionary.hh"
// Support for Belarusian transliteration
namespace BelarusianTranslit {
2022-01-09 08:35:07 +00:00
std::vector< sptr< Dictionary::Class > > makeDictionaries();
2013-01-18 19:21:56 +00:00
}
#endif