about summary refs log tree commit diff
path: root/cpptour/Vector.h
blob: c7bbc680f6862fcd9f35723e842ad38b22e67eff (plain) (blame)
1
2
3
4
5
6
7
8
9
class Vector {
public:
  Vector (int s);
  double& operator[] (int i);
  int size () noexcept;
private:
  double* elem;
  int sz;
};