Overte C++ Documentation
PickTransformNode.h
1 //
2 // Created by Sabrina Shanman 2018/08/22
3 // Copyright 2018 High Fidelity, Inc.
4 //
5 // Distributed under the Apache License, Version 2.0.
6 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
7 //
8 #ifndef hifi_PickTransformNode_h
9 #define hifi_PickTransformNode_h
10 
11 #include "TransformNode.h"
12 
13 // TODO: Remove this class when Picks are converted to SpatiallyNestables
14 class PickTransformNode : public TransformNode {
15 public:
16  PickTransformNode(unsigned int uid);
17  Transform getTransform() override;
18  QVariantMap toVariantMap() const override;
19 
20 protected:
21  unsigned int _uid;
22 };
23 
24 #endif // hifi_PickTransformNode_h