annotate src/poco-test.cpp @ 2333:f653602a0500

Rebrand to new project name MXE
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 15:46:58 +0200
parents 8b83f56d4334
children 8a6c466753e2
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2333
f653602a0500 Rebrand to new project name MXE
Volker Grabsch <vog@notjusthosting.com>
parents: 1805
diff changeset
1 /* This file is part of MXE. */
1804
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
2 /* See doc/index.html for further information. */
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
3
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
4 #include <iostream>
1805
8b83f56d4334 corrections and improvements for package poco
Volker Grabsch <vog@notjusthosting.com>
parents: 1804
diff changeset
5 #include <Poco/DateTimeFormat.h>
8b83f56d4334 corrections and improvements for package poco
Volker Grabsch <vog@notjusthosting.com>
parents: 1804
diff changeset
6 #include <Poco/DateTimeFormatter.h>
8b83f56d4334 corrections and improvements for package poco
Volker Grabsch <vog@notjusthosting.com>
parents: 1804
diff changeset
7 #include <Poco/LocalDateTime.h>
1804
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
8
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
9 int main()
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
10 {
1805
8b83f56d4334 corrections and improvements for package poco
Volker Grabsch <vog@notjusthosting.com>
parents: 1804
diff changeset
11 std::cout << Poco::DateTimeFormatter::format(Poco::LocalDateTime(), Poco::DateTimeFormat::ISO8601_FORMAT) << std::endl;
1804
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
12 return 0;
23ed773796dc new package: poco
Finny Thomas <finny.thomas@gmail.com>
parents:
diff changeset
13 }