Files
befpc/bepascal/source/tools/stubgen.so/cpp/test/Point.h
2003-09-21 22:46:55 +00:00

13 lines
162 B
C++

#ifndef _Point_H
#define _Point_H
class Point {
public:
Point(int x, int y);
void addTo(Point other);
int xValue, yValue;
};
#endif /* _Point_H */