1 /*****************************************************************************\
4 * Author : Chris Koeritz *
8 * Provides a more informative date command, providing milliseconds also. *
10 *******************************************************************************
11 * Copyright (c) 2002-$now By Author. This program is free software; you can *
12 * redistribute it and/or modify it under the terms of the GNU General Public *
13 * License as published by the Free Software Foundation; either version 2 of *
14 * the License or (at your option) any later version. This is online at: *
15 * http://www.fsf.org/copyleft/gpl.html *
16 * Please send any updates to: fred@gruntose.com *
17 \*****************************************************************************/
19 #include <basis/astring.h>
20 #include <application/hoople_main.h>
21 #include <loggers/console_logger.h>
22 #include <timely/time_stamp.h>
23 #include <structures/static_memory_gremlin.h>
27 using namespace application;
28 using namespace basis;
29 using namespace loggers;
30 using namespace structures;
31 using namespace timely;
33 class mdate_app : public application_shell
36 virtual int execute() {
38 program_wide_logger::get().log(time_stamp::notarize(false), ALWAYS_PRINT);
41 DEFINE_CLASS_NAME("mdate_app");
44 HOOPLE_MAIN(mdate_app, )