diff options
Diffstat (limited to 'Examples/python/reference/example.h')
-rw-r--r-- | Examples/python/reference/example.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Examples/python/reference/example.h b/Examples/python/reference/example.h new file mode 100644 index 0000000..4915adb --- /dev/null +++ b/Examples/python/reference/example.h @@ -0,0 +1,26 @@ +/* File : example.h */ + +class Vector { +private: + double x,y,z; +public: + Vector() : x(0), y(0), z(0) { }; + Vector(double x, double y, double z) : x(x), y(y), z(z) { }; + friend Vector operator+(const Vector &a, const Vector &b); + char *print(); +}; + +class VectorArray { +private: + Vector *items; + int maxsize; +public: + VectorArray(int maxsize); + ~VectorArray(); + Vector &operator[](int); + int size(); +}; + + + + |