/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/python/reference/example.h
22 строки
413 B
Olly Betts
Eliminate trivial differences between the reference examples
07 ноя 2014, 05:34
07 ноя 2014, 05:34
ac1f067
Код
Авторство
О чём код?
/* 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(); };