opencc-sys 0.4.2+1.3.1

OpenCC bindings for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include <utility>
#include <vector>

#include "Common.hpp"

namespace opencc {

typedef std::vector<std::pair<std::string, std::string>> PluginConfigPairs;

SegmentationPtr CreatePluginSegmentation(const std::string& type,
                                         const PluginConfigPairs& configPairs);

} // namespace opencc