-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite.cc
50 lines (42 loc) · 1.05 KB
/
write.cc
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <fstream>
#include <ctime>
#include "write.hh"
Write::Write(std::vector<Vehicle> v)
:vehicles_(v)
{}
void Write::compute_res()
{
std::time_t now = std::time(0);
char* dt = std::ctime(&now);
std::string res= "result";
std::string tmp_r(dt);
//res += tmp_r;
std::ofstream fichier(res, std::ios::out | std::ios::trunc);
if(fichier) // si l
{
for(size_t i = 0; i < vehicles_.size(); ++i)
{
auto tmp = vehicles_[i];
if(tmp.done_rides.size() > 0)
{
fichier << tmp.done_rides.size() << " ";
while(!tmp.done_rides.empty())
{
if(tmp.done_rides.size() != 1)
{
fichier << tmp.done_rides.front() << " ";
tmp.done_rides.pop();
}
else
{
fichier << tmp.done_rides.front() << std::endl;
tmp.done_rides.pop();
}
}
}
}
fichier.close(); // on referme le fichier
}
else // sinon
std::cerr << "Erreur à l'ouverture !" << std::endl;
}