- bool IsRelative( wxPathFormat format = wxPATH_NATIVE );
- bool IsAbsolute( wxPathFormat format = wxPATH_NATIVE );
+
+ // is this filename absolute?
+ bool IsAbsolute() const
+ { return !m_relative; }
+
+ // is this filename relative?
+ bool IsRelative() const
+ { return m_relative; }
+
+ // forcibly set the flag
+ void SetAbsolute()
+ { m_relative = FALSE; }
+ void SetRelative()
+ { m_relative = TRUE; }
+
+ // Information about path format
+
+ // get the string separating the volume from the path for this format
+ static wxString GetVolumeSeparator(wxPathFormat format = wxPATH_NATIVE);