f36e2104d8
sep-tests / ragflow_preflight (push) Waiting to run
sep-tests / ragflow_tests_infinity (push) Blocked by required conditions
sep-tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
tests / ragflow_preflight (push) Waiting to run
tests / ragflow_tests_infinity (push) Blocked by required conditions
tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
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;
|
|
};
|