导出一个类的重载运算符

时间:2011-10-22 18:31:28

标签: c++ export overloading operator-keyword

我创建了(在Qt和Mingwin中指定的情况),一个具有以下结构的类:

#ifndef POINT2D_H
#define POINT2D_H

#include "Calculus_global.h"
#include <QtCore>

namespace Calculus
{

/** Class for definition of a point in 2D space */
class CALCULUSSHARED_EXPORT CartesianPoint2D
{
public:

    //! Constructor
    CartesianPoint2D();


    //! Set x value
    void setX(const qreal &qrX);

   // ETC ETC ETC
};

} // namespace Calculus

///////////////////////////////////////////////////////////////////////////////
// RELATED NON-MEMBER OPERATORS                                              //
///////////////////////////////////////////////////////////////////////////////

//! Addition operator
Calculus::CartesianPoint2D operator +(const Calculus::CartesianPoint2D &xAPoint, const Calculus::CartesianPoint2D &xBPoint);

//! Subtraction operator
Calculus::CartesianPoint2D operator -(const Calculus::CartesianPoint2D &xAPoint, const Calculus::CartesianPoint2D &xBPoint);

// And so on...

#endif // POINT2D_H

当我使用这个库时,类方法效果很好。但是当我想使用运算符时,我得到了未定义的引用错误,例如:

path\sources\testcalculus.cpp:273: error: undefined reference to `operator+(Calculus::CartesianPoint2D const&, Calculus::CartesianPoint2D const&)'

我必须做些什么才能导出重载的运算符并使用它们?

感谢您的回复。

1 个答案:

答案 0 :(得分:1)

您必须在自由函数(本例中的运算符)中使用CALCULUSSHARED_EXPORT。这(我认为)仅适用于Windows。