JODA  0.13.1 (59b41972)
JSON On-Demand Analysis
OSUtility.h
Go to the documentation of this file.
1 //
2 // Created by Nico on 06/03/2020.
3 //
4 
5 #ifndef JODA_OSUTILITY_H
6 #define JODA_OSUTILITY_H
7 #include <string>
8 
12 class OSUtility {
13  public:
19  static const std::string &getOS();
24  static const std::string &getKernel();
25 
26  private:
27  static void initKernel();
28  static void initOS();
29 
30  static std::string os;
31  static std::string kernel;
32 };
33 
34 #endif // JODA_OSUTILITY_H
Definition: OSUtility.h:12
static const std::string & getOS()
Definition: OSUtility.cpp:48
static const std::string & getKernel()
Definition: OSUtility.cpp:55