Overte C++ Documentation
controllers/src/controllers/Forward.h
1 //
2 // Created by Bradley Austin Davis 2015/10/20
3 // Copyright 2015 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 #pragma once
10 #ifndef hifi_Controllers_Forward_h
11 #define hifi_Controllers_Forward_h
12 
13 namespace controller {
14 
15 class Endpoint;
16 using EndpointPointer = std::shared_ptr<Endpoint>;
17 using EndpointList = std::list<EndpointPointer>;
18 
19 class Filter;
20 using FilterPointer = std::shared_ptr<Filter>;
21 using FilterList = std::list<FilterPointer>;
22 
23 class Route;
24 using RoutePointer = std::shared_ptr<Route>;
25 using RouteList = std::list<RoutePointer>;
26 
27 class Conditional;
28 using ConditionalPointer = std::shared_ptr<Conditional>;
29 using ConditionalList = std::list<ConditionalPointer>;
30 
31 class Mapping;
32 using MappingPointer = std::shared_ptr<Mapping>;
33 using MappingList = std::list<MappingPointer>;
34 
35 struct Pose;
36 }
37 
38 #endif