/* * This file part of makedict - convertor from any dictionary format to any * http://sdcv.sourceforge.net * Copyright (C) 2005 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 using namespace std; #include "parser.hpp" class dummy_parser : public makedict_parser { public: dummy_parser() { set_parser_info("format", "dummy"); set_parser_info("version", "dummy_parser, version 1.0"); } protected: int parse(const std::string& url); }; int dummy_parser::parse(const std::string& url) { if (url!="-") { cout<<"File in not supported format: "< key_list(1, key); article(key_list, data); } return EXIT_SUCCESS; } int main(int argc, char *argv[]) { dummy_parser parser; return parser.run(argc, argv); }