nx_metadata_sdk  1.0
Metadata SDK
human_face.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 #include "abstract_object.h"
6 
7 #include "random_pauser.h"
8 
9 namespace nx {
10 namespace vms_server_plugins {
11 namespace analytics {
12 namespace stub {
13 
14 const std::string kHumanFaceObjectType = "nx.stub.humanFace";
15 
17 {
18  using base_type = AbstractObject;
19 public:
20  HumanFace();
21  virtual void update() override;
22 
23 private:
24  RandomPauser m_pauser;
25 };
26 
27 } // namespace stub
28 } // namespace analytics
29 } // namespace vms_server_plugins
30 } // namespace nx
Definition: apple_utils.h:6