mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +01:00
40 lines
827 B
C++
40 lines
827 B
C++
|
//
|
||
|
// DateTime.cpp
|
||
|
//
|
||
|
// This sample demonstrates the DateTime class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "Poco/LocalDateTime.h"
|
||
|
#include "Poco/DateTime.h"
|
||
|
#include "Poco/DateTimeFormat.h"
|
||
|
#include "Poco/DateTimeFormatter.h"
|
||
|
#include "Poco/DateTimeParser.h"
|
||
|
#include <iostream>
|
||
|
|
||
|
|
||
|
using Poco::LocalDateTime;
|
||
|
using Poco::DateTime;
|
||
|
using Poco::DateTimeFormat;
|
||
|
using Poco::DateTimeFormatter;
|
||
|
using Poco::DateTimeParser;
|
||
|
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
LocalDateTime now;
|
||
|
|
||
|
std::string str = DateTimeFormatter::format(now, DateTimeFormat::ISO8601_FORMAT);
|
||
|
DateTime dt;
|
||
|
int tzd;
|
||
|
DateTimeParser::parse(DateTimeFormat::ISO8601_FORMAT, str, dt, tzd);
|
||
|
dt.makeUTC(tzd);
|
||
|
LocalDateTime ldt(tzd, dt);
|
||
|
return 0;
|
||
|
}
|