- 论坛徽章:
- 0
|
头文件A.hpp
namespace nc{
template <typename T>
class my_ptr{
public:
my_ptr(T* p):ptr(p){
ref_cnt = new int(0); (*ref_cnt)++;
}
...
};
}
头文件B.hpp
namespace nc{
class Context{
...
};
}
在头文件MObject.hpp中(这里没有写include):
class MObject{
public:
void setContext(nc::my_ptr<nc::Context> &);
.....
};
在MObjectImpl.cpp中:
#include "A.hpp"
#include "B.hpp"
#include "MObject.hpp"
using namespace nc;
void MObject::setContext(my_ptr<Context> & _ctx){
this->_ctx = _ctx;
}
....
这样,结果编译时报:
MObject.hpp, line 3.41: 1540-0063 (S) The text "nc::Context" is unexpected.
请问错在哪?实现中已经声明,按头文件定义顺序应该是可以找到啊。 |
|