author | saiam |
Tue, 18 Nov 2008 18:00:32 +0000 | |
changeset 46 | 6a9a95912801 |
parent 45 | 32c876923cac |
child 47 | 87883096a882 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/proto2/Vector.hh Tue Nov 18 18:00:32 2008 +0000 @@ -0,0 +1,17 @@ +#ifndef VECTOR_HH +#define VECTOR_HH + +#include <complex> + +/** + * A vector class. This class implements standard vector operations + * for a two dimensional vector. It uses STL complex number class + * internally. + */ +class Vector { + std::complex vector(0,0); + + +}; + +#endif