/* * This file part of makedict - convertor from any dictionary format to any * http://xdxf.sourceforge.net * Copyright (C) 2006 Evgeniy * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include #include #include #include #include "parser.hpp" class xdxf_parser : public makedict_parser { public: xdxf_parser() { set_parser_info("format", "xdxf"); set_parser_info("version", "xdxf_parser, version 0.1"); } protected: bool is_my_format(const std::string& url) { return g_str_has_suffix(url.c_str(), "dict.xdxf"); } int parse(const std::string& url); }; int xdxf_parser::parse(const std::string& url) { meta_info(); std::ifstream ifs(url.c_str()); if (!ifs) { std::cerr<<_("Can not open: ")<