Advertisement
Guest User

Vector.h

a guest
May 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. #ifndef _VECTOR_H_
  2. #define _VECTOR_H_
  3.  
  4. #include "/data/user/0/ru.iiec.cxxdroid/files/C++/ResizableArray.h"
  5.  
  6. class Vector {
  7.     public:
  8.         Vector();
  9.         ~Vector();
  10.         int size();
  11.         double GetAt(int ind);
  12.         void SetAt(int ind, double value);
  13.         void Add(double value);
  14.         double PopLast();
  15.     private:
  16.     // ...
  17. };
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement