File indexing completed on 2024-05-12 04:46:02

0001 #ifndef UTILS_ENVIRONMENT_HPP
0002 #define UTILS_ENVIRONMENT_HPP
0003 
0004 #include <QString>
0005 
0006 class Environment {
0007 public:
0008   static QString get(QString key);
0009 };
0010 
0011 #endif