class Shapemaker
{
public:
static Shape * shapeCreate(CDrawView::shape sh);
};
私の CDrawView クラスの列挙型は
enum shape{line, rect, elli};
shape current_shape;
私が呼び出すShapemaker::shapeCreate(current_shape)
と、エラー c2653 が表示されますCDrawView
: is not a class or namespace name onshapemaker.h