coal  3.0.1
Coal, The Collision Detection Library. Previously known as HPP-FCL, fork of FCL -- The Flexible Collision Library
fwd.hh File Reference
#include <cassert>
#include <memory>
#include <sstream>
#include <stdexcept>
#include "coal/config.hh"
#include "coal/deprecated.hh"
#include "coal/warning.hh"
Include dependency graph for fwd.hh:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 coal
 Main namespace.
 

Macros

#define COAL_PRETTY_FUNCTION   __PRETTY_FUNCTION__
 
#define COAL_UNUSED_VARIABLE(var)   (void)(var)
 
#define COAL_ONLY_USED_FOR_DEBUG(var)
 
#define COAL_THROW_PRETTY(message, exception)
 
#define COAL_ASSERT(check, message, exception)
 
#define COAL_COMPILER_DIAGNOSTIC_PUSH
 
#define COAL_COMPILER_DIAGNOSTIC_POP
 
#define COAL_COMPILER_DIAGNOSTIC_IGNORED_DEPRECECATED_DECLARATIONS
 
#define COAL_COMPILER_DIAGNOSTIC_IGNORED_MAYBE_UNINITIALIZED
 

Typedefs

typedef shared_ptr< CollisionObjectcoal::CollisionObjectPtr_t
 
typedef shared_ptr< const CollisionObjectcoal::CollisionObjectConstPtr_t
 
typedef shared_ptr< CollisionGeometrycoal::CollisionGeometryPtr_t
 
typedef shared_ptr< const CollisionGeometrycoal::CollisionGeometryConstPtr_t
 
typedef shared_ptr< BVHModelBasecoal::BVHModelPtr_t
 
typedef shared_ptr< OcTreecoal::OcTreePtr_t
 
typedef shared_ptr< const OcTreecoal::OcTreeConstPtr_t
 

Macro Definition Documentation

◆ COAL_ASSERT

#define COAL_ASSERT (   check,
  message,
  exception 
)
Value:
{ \
COAL_UNUSED_VARIABLE(exception(message)); \
assert((check) && message); \
}

◆ COAL_COMPILER_DIAGNOSTIC_IGNORED_DEPRECECATED_DECLARATIONS

#define COAL_COMPILER_DIAGNOSTIC_IGNORED_DEPRECECATED_DECLARATIONS

◆ COAL_COMPILER_DIAGNOSTIC_IGNORED_MAYBE_UNINITIALIZED

#define COAL_COMPILER_DIAGNOSTIC_IGNORED_MAYBE_UNINITIALIZED

◆ COAL_COMPILER_DIAGNOSTIC_POP

#define COAL_COMPILER_DIAGNOSTIC_POP

◆ COAL_COMPILER_DIAGNOSTIC_PUSH

#define COAL_COMPILER_DIAGNOSTIC_PUSH

◆ COAL_ONLY_USED_FOR_DEBUG

#define COAL_ONLY_USED_FOR_DEBUG (   var)

◆ COAL_PRETTY_FUNCTION

#define COAL_PRETTY_FUNCTION   __PRETTY_FUNCTION__

◆ COAL_THROW_PRETTY

#define COAL_THROW_PRETTY (   message,
  exception 
)
Value:
{ \
std::stringstream ss; \
ss << "From file: " << __FILE__ << "\n"; \
ss << "in function: " << COAL_PRETTY_FUNCTION << "\n"; \
ss << "at line: " << __LINE__ << "\n"; \
ss << "message: " << message << "\n"; \
throw exception(ss.str()); \
}
#define COAL_PRETTY_FUNCTION
Definition: fwd.hh:53

◆ COAL_UNUSED_VARIABLE

#define COAL_UNUSED_VARIABLE (   var)    (void)(var)