#ifndef RTGUI_INPFILE_H #define RTGUI_INPFILE_H #include namespace RTGUI { class t_keyword; class t_panel; class t_inpFile : public QTabWidget { public: t_inpFile(const QString& fileName); ~t_inpFile(); private: void readFile(); QString _fileName; QMap _keywords; }; } // namespace RTGUI #endif