sensors_group.cpp 328 B

123456789101112131415161718192021
  1. #include "sensors_group.h"
  2. #include <util/generic/singleton.h>
  3. namespace NYql {
  4. struct TSensorsRootGroup {
  5. TSensorsGroupPtr Value;
  6. TSensorsRootGroup()
  7. : Value(new TSensorsGroup)
  8. {
  9. }
  10. };
  11. TSensorsGroupPtr GetSensorsRootGroup() {
  12. return Singleton<TSensorsRootGroup>()->Value;
  13. }
  14. } // namspace NYql