mxe/src/poco-test.cpp

15 lines
354 B
C++
Raw Permalink Normal View History

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
2011-05-01 15:52:46 +01:00
#include <iostream>
#include <Poco/DateTimeFormat.h>
#include <Poco/DateTimeFormatter.h>
#include <Poco/LocalDateTime.h>
2011-05-01 15:52:46 +01:00
int main()
{
std::cout << Poco::DateTimeFormatter::format(Poco::LocalDateTime(), Poco::DateTimeFormat::ISO8601_FORMAT) << std::endl;
2011-05-01 15:52:46 +01:00
return 0;
}