mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 12:44:07 +00:00
18 lines
444 B
C++
18 lines
444 B
C++
|
/* 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 {
|
||
|
|
||
|
std::vector< sptr< Dictionary::Class > > makeDictionaries() throw( std::exception );
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|