00001 // 00002 // C++ Interface: fileinfo 00003 // 00004 // Description: 00005 // 00006 // 00007 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2005 00008 // 00009 // Copyright: See COPYING file that comes with this distribution 00010 // 00011 // 00012 #ifndef FILEINFO_H 00013 #define FILEINFO_H 00014 00015 #include "parserinfo.h" 00016 00017 namespace srchilite { 00018 00023 struct FileInfo: public ParserInfo { 00025 std::string input_file_name; 00026 00028 std::string output_file_name; 00029 00031 std::string output_file_extension; 00032 00033 FileInfo(const std::string &input, const std::string &output); 00034 00035 ~FileInfo(); 00036 }; 00037 00038 } 00039 00040 #endif