Definition at line 84 of file Message.cpp. 00084 { 00085 // first add the message type to the format string 00086 string temp = newMessageType; 00087 escapeString(temp); 00088 formatString = temp; 00089 //then add the component strings 00090 for ( int i = 0; i < (int)stringComponents.size(); i++ ) { 00091 temp = stringComponents.at(i); 00092 escapeString(temp); 00093 formatString += DELIMETER + temp; 00094 } 00095 }
|
1.5.1