#ifndef CONFIG_H #define CONFIG_H #include #include #include #include #include class Config { public: Config(); static QString getSrcIP(); static QString getSrcPort(); static QString getDesIP(); static QString getDesPort(); static void read(); private: static QHash* hash; }; #endif // CONFIG_H