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 51
|
/* +------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| https://www.mrpt.org/ |
| |
| Copyright (c) 2005-2023, Individual contributors, see AUTHORS file |
| See: https://www.mrpt.org/Authors - All rights reserved. |
| Released under BSD License. See: https://www.mrpt.org/License |
+------------------------------------------------------------------------+ */
/**
* times
* Prints current time instances in UTC format
*/
#include <mrpt/system/datetime.h>
#include <iostream>
using namespace mrpt;
using namespace mrpt::system;
// ------------------------------------------------------
// TestTypes
// ------------------------------------------------------
void TestTimes()
{
TTimeStamp t;
for (size_t i = 0; i < 20; i++)
{
t = mrpt::system::getCurrentTime();
std::cout << mrpt::system::dateTimeToString(t) << std::endl;
}
}
// ------------------------------------------------------
// MAIN
// ------------------------------------------------------
int main()
{
try
{
TestTimes();
return 0;
}
catch (const std::exception& e)
{
std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
return -1;
}
}
|