CARLA
CarlaRecorderVisualTime.h
Go to the documentation of this file.
1 // Copyright (c) 2021 Computer Vision Center (CVC) at the Universitat Autonoma
2 // de Barcelona (UAB).
3 //
4 // This work is licensed under the terms of the MIT license.
5 // For a copy, see <https://opensource.org/licenses/MIT>.
6 
7 #pragma once
8 
9 #include <fstream>
10 #include <chrono>
11 
12 #pragma pack(push, 1)
14 {
15  double Time;
16 
17  void SetTime(double ThisTime);
18 
19  void Read(std::ifstream &InFile);
20 
21  void Write(std::ofstream &OutFile);
22 
23 };
24 #pragma pack(pop)
void Write(std::ofstream &OutFile)
void Read(std::ifstream &InFile)