00001 #ifndef MYTHUTIL_H_ 00002 #define MYTHUTIL_H_ 00003 00004 // Qt includes 00005 #include <QMap> 00006 #include <QString> 00007 00008 // libmyth* includes 00009 #include "programinfo.h" 00010 00011 // Local includes 00012 #include "commandlineparser.h" 00013 00014 typedef int (*UtilFunc)(const MythUtilCommandLineParser &cmdline); 00015 00016 typedef QMap<QString, UtilFunc> UtilMap; 00017 00018 bool GetProgramInfo(const MythUtilCommandLineParser &cmdline, 00019 ProgramInfo &pginfo); 00020 00021 #endif