#include <sigc++/sigc++.h>#include <sigc++/slot.h>#include <sigc++/class_slot.h>#include <string>#include "MessageService/MsgService.h"#include "Midad/Gui/GuiMainWindow.h"#include "Midad/Gui/GuiButton.h"#include "Midad/Gui/GuiGroup.h"#include "TridAnimator.h"#include "TridControl.h"Go to the source code of this file.
Functions | |
| CVSID ("$Id: TridAnimator.cxx,v 1.9 2006/06/04 20:37:40 tagg Exp $") | |
| double | GetValueFromString (const char *string, double deFault=0) |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 298 of file TridAnimator.cxx. Referenced by TridAnimator::ReadFromGui(). 00298 {
00299 double value = deFault;
00300 int res = sscanf(string,"%lf",&value);
00301 if(res<=0) return deFault;
00302 return value;
00303 }
|
1.3.9.1