hpp-core 6.0.0
Implement basic classes for canonical path planning for kinematic chains.
Loading...
Searching...
No Matches
fwd.hh
Go to the documentation of this file.
1//
2// Copyright (c) 2017 CNRS
3// Authors: Joseph Mirabel
4//
5
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met:
9//
10// 1. Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12//
13// 2. Redistributions in binary form must reproduce the above copyright
14// notice, this list of conditions and the following disclaimer in the
15// documentation and/or other materials provided with the distribution.
16//
17// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
28// DAMAGE.
29
30#ifndef HPP_CORE_STEERING_METHOD_FWD_HH
31#define HPP_CORE_STEERING_METHOD_FWD_HH
32
33namespace hpp {
34namespace core {
35namespace steeringMethod {
37typedef shared_ptr<Straight> StraightPtr_t;
39typedef shared_ptr<Interpolated> InterpolatedPtr_t;
41typedef shared_ptr<CarLike> CarLikePtr_t;
43typedef shared_ptr<ConstantCurvature> ConstantCurvaturePtr_t;
45typedef shared_ptr<Dubins> DubinsPtr_t;
47typedef shared_ptr<ReedsShepp> ReedsSheppPtr_t;
49typedef shared_ptr<Snibud> SnibudPtr_t;
50template <int _PolynomeBasis, int _Order>
51class Spline;
53typedef shared_ptr<Hermite> HermitePtr_t;
54} // namespace steeringMethod
55} // namespace core
56} // namespace hpp
57
58#endif // HPP_CORE_STEERING_METHOD_FWD_HH
Definition car-like.hh:49
Path of constant curvature for a carlike robot.
Definition constant-curvature.hh:41
Definition dubins.hh:48
Definition hermite.hh:47
Definition interpolated-steering-method.hh:45
Definition reeds-shepp.hh:47
Definition snibud.hh:47
Definition spline.hh:48
Definition straight.hh:46
shared_ptr< Hermite > HermitePtr_t
Definition fwd.hh:53
shared_ptr< Straight > StraightPtr_t
Definition fwd.hh:37
shared_ptr< Dubins > DubinsPtr_t
Definition fwd.hh:45
shared_ptr< ConstantCurvature > ConstantCurvaturePtr_t
Definition fwd.hh:43
shared_ptr< Interpolated > InterpolatedPtr_t
Definition fwd.hh:347
shared_ptr< Snibud > SnibudPtr_t
Definition fwd.hh:49
shared_ptr< CarLike > CarLikePtr_t
Definition fwd.hh:41
shared_ptr< ReedsShepp > ReedsSheppPtr_t
Definition fwd.hh:349
HPP_PREDEF_CLASS(Interpolated)
Definition bi-rrt-planner.hh:35