blob: 37f8d573087b28ec97d6023c569236aa0b4eb8c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "sensors_group.h"
#include <util/generic/singleton.h>
namespace NYql {
struct TSensorsRootGroup {
TSensorsGroupPtr Value;
TSensorsRootGroup()
: Value(new TSensorsGroup)
{
}
};
TSensorsGroupPtr GetSensorsRootGroup() {
return Singleton<TSensorsRootGroup>()->Value;
}
} // namspace NYql
|