void Message::createFormatString ( const string &  newMessageType  )  [private]

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 }


Generated on Wed Jun 25 14:47:10 2008 for keyvil by  doxygen 1.5.1