Overte C++ Documentation
AssignmentClientChildData.h
1 //
2 // AssignmentClientChildData.h
3 // assignment-client/src
4 //
5 // Created by Seth Alves on 2/23/2015.
6 // Copyright 2015 High Fidelity, Inc.
7 //
8 // Distributed under the Apache License, Version 2.0.
9 // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
10 //
11 
12 #ifndef hifi_AssignmentClientChildData_h
13 #define hifi_AssignmentClientChildData_h
14 
15 #include <Assignment.h>
16 
17 
18 class AssignmentClientChildData : public NodeData {
19 public:
20  AssignmentClientChildData(Assignment::Type childType);
21 
22  Assignment::Type getChildType() { return _childType; }
23  void setChildType(Assignment::Type childType) { _childType = childType; }
24 
25 private:
26  Assignment::Type _childType;
27 };
28 
29 #endif // hifi_AssignmentClientChildData_h