ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/tags/mpi_start/mdtools/interface_implementation/LinkedCommand.cpp
Revision: 116
Committed: Mon Sep 23 15:13:12 2002 UTC (21 years, 10 months ago)
File size: 412 byte(s)
Log Message:
This commit was manufactured by cvs2svn to create tag 'mpi_start'.

File Contents

# Content
1 #include <cstdlib>
2 #include <cstring>
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 }