41 lines
696 B
C++
41 lines
696 B
C++
// MeCab -- Yet Another Part-of-Speech and Morphological Analyzer
|
|
//
|
|
//
|
|
// Copyright(C) 2001-2006 Taku Kudo <taku@chasen.org>
|
|
// Copyright(C) 2004-2006 Nippon Telegraph and Telephone Corporation
|
|
#ifndef MECAB_ICONV_H
|
|
#define MECAB_ICONV_H
|
|
|
|
#if defined HAVE_ICONV
|
|
#include <iconv.h>
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
#include "windows.h"
|
|
#endif
|
|
|
|
namespace MeCab {
|
|
|
|
class Iconv {
|
|
private:
|
|
#ifdef HAVE_ICONV
|
|
iconv_t ic_;
|
|
#else
|
|
int ic_;
|
|
#endif
|
|
|
|
#if defined(_WIN32) && !defined(__CYGWIN__)
|
|
DWORD from_cp_;
|
|
DWORD to_cp_;
|
|
#endif
|
|
|
|
public:
|
|
explicit Iconv();
|
|
virtual ~Iconv();
|
|
bool open(const char *from, const char *to);
|
|
bool convert(std::string *);
|
|
};
|
|
}
|
|
|
|
#endif
|