#pragma once /// Forward declarations of the templated QuatT< typename T > class. /// This is a convenience header file to forward declare the details describing a Quat and QuatD. namespace Aftr { template< typename T > class QuatT; using Quat = QuatT; using QuatD = QuatT; } // namespace Aftr