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