Overte C++ Documentation
ParseFlowDataTask.h
1 //
2 // Created by Luis Cuenca on 5/3/2019
3 // Copyright 2019 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 
9 #ifndef hifi_ParseFlowDataTask_h
10 #define hifi_ParseFlowDataTask_h
11 
12 #include <hfm/HFM.h>
13 #include "Engine.h"
14 
15 #include <shared/HifiTypes.h>
16 
17 #include "BakerTypes.h"
18 
19 class ParseFlowDataTask {
20 public:
21  using Input = hifi::VariantHash;
22  using Output = FlowData;
23  using JobModel = baker::Job::ModelIO<ParseFlowDataTask, Input, Output>;
24 
25  void run(const baker::BakeContextPointer& context, const Input& input, Output& output);
26 };
27 
28 #endif // hifi_ParseFlowDataTask_h