/Users/enrico/Ricerca/develop/PINS/pins-mechatronix/LibSources/submodules/Clothoids/src/Clothoids_fmt.hh Source File

Clothoids: /Users/enrico/Ricerca/develop/PINS/pins-mechatronix/LibSources/submodules/Clothoids/src/Clothoids_fmt.hh Source File
Clothoids
Clothoids_fmt.hh
1/*--------------------------------------------------------------------------*\
2 | |
3 | Copyright (C) 2018 |
4 | |
5 | , __ , __ |
6 | /|/ \ /|/ \ |
7 | | __/ _ ,_ | __/ _ ,_ |
8 | | \|/ / | | | | \|/ / | | | |
9 | |(__/|__/ |_/ \_/|/|(__/|__/ |_/ \_/|/ |
10 | /| /| |
11 | \| \| |
12 | |
13 | Paolo Bevilacqua and Enrico Bertolazzi |
14 | |
15 | (1) Dipartimento di Ingegneria e Scienza dell'Informazione |
16 | (2) Dipartimento di Ingegneria Industriale |
17 | |
18 | Universita` degli Studi di Trento |
19 | email: paolo.bevilacqua@unitn.it |
20 | email: enrico.bertolazzi@unitn.it |
21 | |
22\*--------------------------------------------------------------------------*/
23
27
28#pragma once
29
30#ifndef CLOTHOIDS_FMT_dot_HH
31#define CLOTHOIDS_FMT_dot_HH
32
33#ifdef NO_SYSTEM_UTILS
34 #include "Utils_fmt.hh"
35#else
36 #include <Utils_fmt.hh>
37#endif
38
39namespace fmt {
40 template <> struct formatter<G2lib::Biarc> : ostream_formatter {};
41 template <> struct formatter<G2lib::BiarcList> : ostream_formatter {};
42 template <> struct formatter<G2lib::BBox> : ostream_formatter {};
43 template <> struct formatter<G2lib::CircleArc> : ostream_formatter {};
44 template <> struct formatter<G2lib::ClothoidCurve> : ostream_formatter {};
45 template <> struct formatter<G2lib::ClothoidSplineG2> : ostream_formatter {};
46 template <> struct formatter<G2lib::ClothoidList> : ostream_formatter {};
47 template <> struct formatter<G2lib::LineSegment> : ostream_formatter {};
48 template <> struct formatter<G2lib::PolyLine> : ostream_formatter {};
49 template <> struct formatter<G2lib::Triangle2D> : ostream_formatter {};
50 template <> struct formatter<G2lib::Dubins> : ostream_formatter {};
51 template <> struct formatter<G2lib::Dubins3p> : ostream_formatter {};
52}
53
54#endif
55
Definition BBox.cc:42