mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-06 03:18:36 +08:00
### Summary 1. update doc 2. refactor route code --------- Signed-off-by: Jin Hai <haijin.chn@gmail.com>
21 lines
419 B
C++
21 lines
419 B
C++
#pragma once
|
|
|
|
#include "opencc_types.h"
|
|
#include <string>
|
|
|
|
class OpenCC {
|
|
public:
|
|
OpenCC(const std::string &home_dir);
|
|
virtual ~OpenCC();
|
|
|
|
int open(const char *config_file, const char *home_dir);
|
|
|
|
long convert(const std::string &in, std::string &out, long length = -1);
|
|
|
|
long convert(const std::wstring &in, std::wstring &out, long length = -1);
|
|
|
|
private:
|
|
char *config_file;
|
|
opencc_t od;
|
|
};
|