00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: time_sys_win.h 00004 00005 Short description 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: dom mar 12 2006 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00020 #ifndef flc_time_sys_win_H 00021 #define flc_time_sys_win_H 00022 00023 #include <windows.h> 00024 #include <falcon/time_sys.h> 00025 00026 namespace Falcon { 00027 00028 class WinSystemTime: public SystemTime 00029 { 00030 public: 00031 SYSTEMTIME m_time; 00032 00033 WinSystemTime( SYSTEMTIME val ): 00034 m_time( val ) 00035 { 00036 } 00037 }; 00038 00039 } 00040 00041 #endif 00042 00043 /* end of time_sys_win.h */