37 |
|
have_orientation = 1; |
38 |
|
} |
39 |
|
|
40 |
< |
void AtomStamp::assignString( char* lhs, char* rhs ){ |
40 |
> |
char* AtomStamp::assignString( char* lhs, char* rhs ){ |
41 |
|
|
42 |
|
if( !strcmp( lhs, "type" ) ){ |
43 |
|
strcpy( type, rhs ); |
48 |
|
else unhandled->add( lhs, rhs ); |
49 |
|
have_extras = 1; |
50 |
|
} |
51 |
+ |
return NULL; |
52 |
|
} |
53 |
|
|
54 |
< |
void AtomStamp::assignDouble( char* lhs, double rhs ){ |
54 |
> |
char* AtomStamp::assignDouble( char* lhs, double rhs ){ |
55 |
|
|
56 |
|
if( unhandled == NULL ) unhandled = new LinkedAssign( lhs, rhs ); |
57 |
|
else unhandled->add( lhs, rhs ); |
58 |
|
have_extras = 1; |
59 |
+ |
return NULL; |
60 |
|
} |
61 |
|
|
62 |
< |
void AtomStamp::assignInt( char* lhs, int rhs ){ |
62 |
> |
char* AtomStamp::assignInt( char* lhs, int rhs ){ |
63 |
|
|
64 |
|
if( unhandled == NULL ) unhandled = new LinkedAssign( lhs, rhs ); |
65 |
|
else unhandled->add( lhs, rhs ); |
66 |
|
have_extras = 1; |
67 |
+ |
return NULL; |
68 |
|
} |
69 |
|
|
70 |
|
char* AtomStamp::checkMe( void ){ |