Lines Matching refs:string
21 #include <string.h>
22 #include <string>
43 GUIDData::GUIDData(const string & orig) {
45 } // copy (from string) constructor
59 // Assign the GUID from a string input value. A GUID is normally formatted
61 // characters. If the input string is this long or longer, this function
62 // assumes standard separator positioning; if the input string is less
68 GUIDData & GUIDData::operator=(const string & orig) {
69 string copy, fragment;
123 } // GUIDData::operator=(const string & orig)
125 // Assignment from C-style string; rely on C++ casting....
127 return operator=((string) orig);
179 // Return the GUID as a string, suitable for display to the user.
180 string GUIDData::AsString(void) const {
192 // Delete spaces or braces (which often enclose GUIDs) from the orig string,
193 // returning modified string.
194 string GUIDData::DeleteSpaces(string s) {
213 // Display a GUID as a string....
215 // string asString;