changeset 46 | 6a9a95912801 |
child 47 | 87883096a882 |
45:32c876923cac | 46:6a9a95912801 |
---|---|
1 #ifndef VECTOR_HH |
|
2 #define VECTOR_HH |
|
3 |
|
4 #include <complex> |
|
5 |
|
6 /** |
|
7 * A vector class. This class implements standard vector operations |
|
8 * for a two dimensional vector. It uses STL complex number class |
|
9 * internally. |
|
10 */ |
|
11 class Vector { |
|
12 std::complex vector(0,0); |
|
13 |
|
14 |
|
15 }; |
|
16 |
|
17 #endif |