-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtests.h
More file actions
32 lines (29 loc) · 820 Bytes
/
Copy pathtests.h
File metadata and controls
32 lines (29 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: tests.h
* Author: Sindiso Mkhatshwa
* Created on 24 September 2020, 01:55
*/
#ifndef TESTS_H
#define TESTS_H
#include "robot.h"
#include <fstream>
namespace mkhsin035{
//------------------------------------------------------------------------------
//TESTS CLASS
//------------------------------------------------------------------------------
class tests{
private:
std::ofstream file;
std::string filename;
public:
tests(std::string filename);
void record(double D, playerc_simulation_t *sim_proxy, std::vector<mkhsin035::robot> &robots);
void close_r();
};
};
#endif /* TESTS_H */