类前向声明​​失败,没有递归包含

时间:2013-07-20 05:31:54

标签: c++ visual-studio-2008 mfc

我正在使用VS2008并在MFC中开发用于学校项目。 代码结构由bouml 4生成,当我想使用它时,问题就发生了。 我一直坚持错误C2061:语法错误:标识符'节点'几个小时,不知道如何解决它。 这是编译错误发生的地方。

Link.h

#pragma once

#include "model/MapIndicator.h"
#include "model/Highlightable.h"

class Node;
struct COORDINATE_AREA;

class Link : public MapIndicator {
public:
    explicit Link();
    Link(Node * node1, Node * node2); // Error on this line
protected:
    Link(const Link & source);
public:
    virtual ~Link(); 
...

Node.h

#pragma once

#include "model/MapIndicator.h"
#include <vector>
using std::vector;
#include "model/COORDINATE.h"
#include "model/Highlightable.h"

class Site;
struct COORDINATE_AREA;

//Node will be repaint several times in one refresh.
class Node : public MapIndicator {
public:
    explicit Node();

protected:
    Node(const Node & source);

public:
    virtual ~Node();

private:
    Node & operator=(const Node & source);

public:
    //This function will only add other node in its adjacent node list.
    //Note: Duplicate adding will have no effect.
    void addAdjNode(Node * otherNode);

    vector<Node *>::size_type getAdjNodeCount();

    //Remove specified node from its adjacent node list.
    //Return true if succeeds, Return false if that node doesn't exist in list.
    bool removeAdjNode(const Node * adjNode);

    //Add site which use this instance as reference node to referenced site list.
    void addRefSite(Site * refSite);

    vector<Site *>::size_type getRefSiteCount();

    //Remove specified site from its referenced site list.
    //Return true if succeeds, Return false if that site doesn't exist in list.
    bool removeRefSite(const Site * refSite);

    inline COORDINATE getNodeCoordinate() const;

    void setNodeCoordinate(COORDINATE value);

    //Draw itself according to the size and the coordinate of display area and its own coordinate.
    virtual void DrawInRect(const RECT & viewDispRect, const COORDINATE_AREA & mapDispCoordinate, CDC * pDC);

    //Return true if indicator have something to show in the coordinate area specified in parameter, otherwise return false.
    virtual bool VisibleInArea(const COORDINATE_AREA & mapDispCoordinate);

    //Return distance in double between screen position of this indicator and the screen point.
    virtual double DistanceInPixel(const RECT & viewDispRect, const COORDINATE_AREA & mapDispCoordinate, const CPoint & point);

    //Set display state directly.
    virtual void SetDispState(DispState dispState);

    //If hover is true and current state is normal, set state to hover.
    //If hover is false and current state is hover, set state to normal.
    //Otherwise no effect.
    virtual void SetHover(bool hover);

private:
    vector<Node *> adjNodes;

    vector<Site *> referencedSites;

    COORDINATE nodeCoordinate;

};
inline COORDINATE Node::getNodeCoordinate() const {
  return nodeCoordinate;
}

MapIndicator.h

#pragma once

#include "model/MapObject.h"
#include "model/Drawable.h"
#include "model/Locatable.h"
#include "model/Highlightable.h"

struct COORDINATE_AREA;

//This enum specifies different kinds of indicators available to identify.
enum IndicatorType {
  Road,
  Link,
  Node,
  Site

};
//MapIndicator is a artifact on map given varies kinds of hint to user.
class MapIndicator : public MapObject, public Drawable, public Locatable, public Highlightable {
public:
    explicit MapIndicator(IndicatorType indicatorType);
...

并且MapObject,Drawable,Locatable和Highlightable的标题中没有include语句,只有#pragma一次。

领先的编译输出:

1>Link.cpp
1>c:\project\model\link.h(12) : error C2061: syntax error : identifier 'Node'
1>c:\project\model\link.h(12) : error C2535: 'Link::Link(void)' : member function already defined or declared
1>        c:\project\model\link.h(11) : see declaration of 'Link::Link'

实际上这个错误在我的项目中到处都有,但为什么呢?我使用的是指针,没有递归包含。

1 个答案:

答案 0 :(得分:0)

好的我发现我在MapIndicator.h中定义的枚举与类名有名称冲突。 我要感谢我们很好的编译信息... OTL ......