在CDocment类的子类中使用UpdateALLView出错解决方案

在CDocment类的子类中使用UpdateALLView出错出错信息:InterferfringeDoc.cpp(118) : error C2065: Update

在CDocment类的子类中使用UpdateALLView出错
出错信息:
  
  InterferfringeDoc.cpp(118) : error C2065: 'UpdateALLViews' : undeclared identifier
UpdateALLViews是CDocment的函数,为什么在子类中使用出错?

[解决办法]
是CDocument的函数,不是CDocment的
[解决办法]
拼写错误,应该是
UpdateAllViews(NULL);

注意大小写