//*.h文件
class Clianliankan
{public:
typedef struct _Point {
    unsigned short  x;
    unsigned short  y;
} Point;
......
//*.cpp文件
Point Clianliankan::get_xy(unsigned short p)//出错啦!!!!!!!!!!!!
{
Point point;
point.x = p/(h+2);
point.y = p%(h+2)-1;
return point;
}
编译提示:
error C2143: syntax error : missing ';' before 'tag::id'
error C2501: 'tagPoint' : missing storage-class or type specifiers
fatal error C1004: unexpected end of file found请问怎么解决啊。