MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 /**
11  * times
12  * Prints current time instances in UTC format
13  */
14 
15 #include <mrpt/system/datetime.h>
16 #include <iostream>
17 
18 using namespace mrpt;
19 using namespace mrpt::system;
20 
21 // ------------------------------------------------------
22 // TestTypes
23 // ------------------------------------------------------
24 void TestTimes()
25 {
26  TTimeStamp t;
27  for (size_t i = 0; i < 20; i++)
28  {
30  std::cout << mrpt::system::dateTimeToString(t) << std::endl;
31  }
32 }
33 
34 // ------------------------------------------------------
35 // MAIN
36 // ------------------------------------------------------
37 int main()
38 {
39  try
40  {
41  TestTimes();
42 
43  return 0;
44  }
45  catch (const std::exception& e)
46  {
47  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
48  return -1;
49  }
50  catch (...)
51  {
52  printf("Untyped exception!!");
53  return -1;
54  }
55 }
mrpt::system::TTimeStamp getCurrentTime()
Returns the current (UTC) system time.
Definition: datetime.h:82
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
Definition: datetime.h:40
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
std::string dateTimeToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (UTC time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
Definition: datetime.cpp:154
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Definition: exceptions.cpp:59
void TestTimes()



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020