i have quite strange problem.
I have 3 files:
figure.h:
#ifndef FIGURE_H
#define FIGURE_H
namespace figure
{
class figure
{
public:
figure(position &p,color c);
virtual bool canMove(const position &p)=0;
virtual bool move(const position &p)=0;
protected:
color col;
position &p;
};
class king : public figure
{
};
};
#endif // FIGURE_H
king.h:
#ifndef KING_H
#define KING_H
#include "./figure.h"
namespace figure
{
class king : protected figure
{
};
}
#endif // KING_H
and king.cpp:
#include "king.h"
bool figure::king::canMove(const position &p)
{
}
I'm compiling it with: gcc -std=c11 -pedantic -Wall -Wextra
but the problem is that i got this error:
/src/figure/figure.h:24:45: error: no ‘bool figure::king::canMove(const position&)’ member function declared in class ‘figure::king’
What should I do? Thank you very much!