我目前正在尝试为我正在从事的项目的 cml ( http://www.cmldev.net/ ) 数学库编写一个基本包装器。我有一个包含一个私有成员的 cml 矢量类的包装器
#ifndef VECTOR3_H_
#define VECTOR3_H_
#include "cml\cml.h"
#include <memory>
namespace Math
{
template<typename T>
class Vector3
{
public:
Vector3( void )
Vector3(T x, T y, T z);
~Vector3(){};
//@Function: Set
//@Description: Set the internals of the vector
//@Parameters: 3 values x, y, z
void set(T x, T y, T z);
private:
// ------------------------------------------------------------
// Copy constructor and assignment operator should be private
Vector3 (const Vector3 &);
Vector3& operator= (const Vector3 &);
//-------------------------------------------------------------
std::auto_ptr<cml::vector<T, cml::fixed<3, -1>> *m_internalVector ;
};
}
(注意我省略了构造函数的实现以减小大小)
在另一个文件中,我使用了一些#defines 来让我的话更容易。
//Vectors
typedef Math::Vector3<float> Vector3f;
//typedef cml::vector2f Vector2f;
typedef Math::Vector3<int> Vector3i;
//typedef cml::vector2i Vector2i;
现在当我尝试使用 Vector3f 时出现我的问题
Vector3f forwards( 0.0f, 0.0f, 1.0f );
我得到了错误:
“没有构造函数的实例 'Math::Vector3::Vector3 [with T = float]' 匹配参数列表”
我已经尝试从更改auto_ptr
为常规指针,以防模板出现问题也尝试在不使用的情况下声明变量#define
并且发生同样的问题,我是否在这里遗漏了一些东西,因为我可以在我的实现中看到该构造函数。