ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/oopse-1.0/libBASS/LinkedCommand.cpp
Revision: 1447
Committed: Fri Jul 30 21:01:35 2004 UTC (19 years, 11 months ago) by gezelter
File size: 414 byte(s)
Log Message:
Initial import of OOPSE sources into cvs tree

File Contents

# User Rev Content
1 gezelter 1447 #include <stdlib.h>
2     #include <string.h>
3    
4     #include "LinkedCommand.hpp"
5    
6     int LinkedCommand::match( char* the_text ){
7    
8     if( !strcmp( the_text, text ) ) return token; //search successful
9     else if( next != NULL ) return next->match( the_text ); // search the next
10    
11     return 0; // search failed
12     }
13    
14     void LinkedCommand::setValues( char* the_text, int the_token ){
15    
16     strcpy( text, the_text );
17     token = the_token;
18     }