ndmspc  0.20250128.0
Core.h
1 #ifndef NdmspcCore_H
2 #define NdmspcCore_H
3 #include <TObject.h>
4 #include "Utils.h"
5 
6 namespace Ndmspc {
7 
9 extern json gCfg;
10 
17 
18 class Core : public TObject {
19  Core() {};
20  virtual ~Core() {};
21 
22  public:
23  static bool LoadConfig(std::string config, std::string userConfig, std::string environment = "",
24  std::string userConfigRaw = "");
25  static bool LoadEnvironment(std::string environmenti = "local");
26 
27  private:
29  ClassDef(Core, 0);
31 };
32 } // namespace Ndmspc
33 #endif
Core object.
Definition: Core.h:18