fix();
}
+//add a new path component to the existing path string
+void SGPath::add( const string& p ) {
+ append( sgSearchPathSep+p );
+}
+
// concatenate a string to the end of the path without inserting a
// path separator
* @param p additional path component */
void append( const string& p );
+ /**
+ * Append a new piece to the existing path. Inserts a search path
+ * separator to the existing path and the new patch component.
+ * @param p additional path component */
+ void add( const string& p );
+
/**
* Concatenate a string to the end of the path without inserting a
* path separator.