Skip to content

Commit 808e005

Browse files
committed
Create Point.h
1 parent 2018224 commit 808e005

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

U201215695/Point.h

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#ifndef _POINT_H_
2+
#define _POINT_H_
3+
4+
class Point{
5+
public:
6+
double x;
7+
double y;
8+
public:
9+
Point(double a=0,double b=0);
10+
void updatePoint(double a,double b);
11+
};
12+
13+
#endif

0 commit comments

Comments
 (0)