00001 //========================================================================== 00002 // nedutil.h - part of 00003 // 00004 // OMNeT++/OMNEST 00005 // Discrete System Simulation in C++ 00006 // 00007 // Contents: 00008 // misc util functions 00009 // 00010 //========================================================================== 00011 00012 /*--------------------------------------------------------------* 00013 Copyright (C) 2002-2005 Andras Varga 00014 00015 This file is distributed WITHOUT ANY WARRANTY. See the file 00016 `license' for details on this and other legal matters. 00017 *--------------------------------------------------------------*/ 00018 00019 00020 #ifndef __NEDUTIL_H 00021 #define __NEDUTIL_H 00022 00032 00041 double NEDStrToSimtime(const char *str); 00042 00053 double NEDStrToSimtime0(const char *&str); 00054 00060 char *NEDSimtimeToStr(double t, char *dest=NULL); 00062 00063 #endif 00064