Advertisement
skatsner

Untitled

Apr 27th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. * RobotDB.h
  2. *
  3. * Created on: Apr 18, 2017
  4. * Author: skatsner
  5. */
  6.  
  7. #ifndef ROBOTDB_H
  8. #define ROBOTDB_H
  9. #include <iostream>
  10. #include <string>
  11. #include "Map.h"
  12. #include "Printer.h"
  13.  
  14. using namespace std;
  15.  
  16.  
  17.  
  18. int Find_Index (const string&);
  19. void Place_Robot (const string&, int, int);
  20. void Move_Robot (const string&, const string&);
  21. void Delete_Robot (const string&);
  22. void getNames (vector<string> &);
  23. void getLoc (vector<int> &, vector<int> &);
  24. void getOther (vector<int> &, vector<int> &);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement