stubgen.so is now include in the build process

This commit is contained in:
ocoursiere
2003-09-21 22:46:55 +00:00
parent e5aeed15d2
commit a08b796230
36 changed files with 12514 additions and 0 deletions

View File

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