class vector{
  private:
    double* elem;
    unsigned int sz;
  public:
    Vector(unsigned int s);
    ~Vector();
  double & operator[](unsigned int i){
  };
  unsigned int size() const;
}
