view src/poco-test.cpp @ 3631:f11ee3f8e632

flac: update version * src/flac.mk: update to 1.3.0 * dist-files.mk: removed flac-1-win32.patch flac-2-lwsock32.patch * src/flac-1-win32.patch: removed * src/flac-2-lwsock32.patch: removed
author John Donoghue <john.donoghue@ieee.org>
date Sun, 29 Jun 2014 15:48:00 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <iostream>
#include <Poco/DateTimeFormat.h>
#include <Poco/DateTimeFormatter.h>
#include <Poco/LocalDateTime.h>

int main()
{
    std::cout << Poco::DateTimeFormatter::format(Poco::LocalDateTime(), Poco::DateTimeFormat::ISO8601_FORMAT) << std::endl;
    return 0;
}