#include <QtCore/qlibraryinfo.h>
#ifndef QLIBRARYINFO_H
#ifndef QT_NO_SETTINGS
class QLibraryInfo{
   /* Some contents are skipped to improve readability */
   public: enum LibraryLocation{
      PrefixPath = 0,
      DocumentationPath = 1,
      HeadersPath = 2,
      LibrariesPath = 3,
      BinariesPath = 4,
      PluginsPath = 5,
      DataPath = 6,
      TranslationsPath = 7,
      SettingsPath = 8,
      DemosPath = 9,
      ExamplesPath = 10,
   };
   /* ... */
};
#endif /* QT_NO_SETTINGS */
#endif // QLIBRARYINFO_H