00001 //========================================================================== 00002 // nedutil.h - part of the OMNeT++ Discrete System Simulation System 00003 // 00004 // Contents: 00005 // misc util functions 00006 // 00007 //========================================================================== 00008 00009 /*--------------------------------------------------------------* 00010 Copyright (C) 2002-2003 Andras Varga 00011 00012 This file is distributed WITHOUT ANY WARRANTY. See the file 00013 `license' for details on this and other legal matters. 00014 *--------------------------------------------------------------*/ 00015 00016 00017 #ifndef __NEDUTIL_H 00018 #define __NEDUTIL_H 00019 00029 00038 double NEDStrToSimtime(const char *str); 00039 00050 double NEDStrToSimtime0(const char *&str); 00051 00057 char *NEDSimtimeToStr(double t, char *dest=NULL); 00059 00060 #endif 00061