pinocchio  3.7.0
A fast and flexible implementation of Rigid Body Dynamics algorithms and their analytical derivatives
 
Loading...
Searching...
No Matches
meshloader-fwd.hpp
1//
2// Copyright (c) 2024 INRIA
3//
4
5#ifndef __pinocchio_parsers_meshloader_fwd_hpp__
6#define __pinocchio_parsers_meshloader_fwd_hpp__
7
8#include <memory>
9
10#ifdef PINOCCHIO_WITH_HPP_FCL
11 #include <hpp/fcl/config.hh>
12#endif // PINOCCHIO_WITH_HPP_FCL
13
14#ifdef COAL_VERSION
15namespace coal
16{
17 class MeshLoader;
18 typedef std::shared_ptr<MeshLoader> MeshLoaderPtr;
19} // namespace coal
20#else
21namespace hpp
22{
23 namespace fcl
24 {
25 class MeshLoader;
26 typedef std::shared_ptr<MeshLoader> MeshLoaderPtr;
27 } // namespace fcl
28} // namespace hpp
29#endif // COAL_VERSION
30
31#endif // __pinocchio_parsers_meshloader_fwd_hpp__