ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libBASS/ZconStamp.cpp
(Generate patch)

Comparing trunk/OOPSE/libBASS/ZconStamp.cpp (file contents):
Revision 675 by mmeineke, Mon Aug 11 19:38:44 2003 UTC vs.
Revision 1093 by tim, Wed Mar 17 14:22:59 2004 UTC

# Line 1 | Line 1
1 < #include <cstdio>
2 < #include <cstring>
1 > #include <stdio.h>
2 > #include <string.h>
3  
4   #include "ZconStamp.hpp"
5  
# Line 69 | Line 69 | int ZconStamp::assignDouble( char* lhs, double rhs, ch
69      have_kRatio = 1;
70      return 1;
71    }
72 +  else if( !strcasecmp( lhs, "cantVel" )){
73 +    
74 +    cantVel = (double)rhs;
75 +    have_cantVel = 1;
76 +    return 1;
77 +  }    
78    else if( unhandled == NULL ){
79      unhandled = new LinkedAssign( lhs, rhs );
80      return 1;
# Line 102 | Line 108 | int ZconStamp::assignInt( char* lhs, int rhs, char** e
108      have_zPos = 1;
109      return 1;
110    }  
111 +  else if( !strcasecmp( lhs, "cantVel" )){
112 +    
113 +    cantVel = (double)rhs;
114 +    have_cantVel = 1;
115 +    return 1;
116 +  }  
117    else if( unhandled == NULL ){
118      unhandled = new LinkedAssign( lhs, rhs );
119      return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines