Update of /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/msw
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28502/include/wxDevCenter/msw
Modified Files:
FileSystemStandard.h
Log Message:
Use of wxInput/OutputStream instead of Archive to serialize documents and projects.
Index: FileSystemStandard.h
===================================================================
RCS file: /cvsroot/wxdevcenter/wxDevCenter/include/wxDevCenter/msw/FileSystemStandard.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** FileSystemStandard.h 7 Mar 2005 15:23:03 -0000 1.2
--- FileSystemStandard.h 17 Aug 2005 16:33:19 -0000 1.3
***************
*** 78,81 ****
--- 78,86 ----
wxString LogicalToPhysical(FilePath strPath);
+ /** Retourne le chemin physique d'un fichier depuis son chemin logique.
+ * @param strFilePath Chemin logique du fichier.
+ * @return Chemin physique du fichier.*/
+ virtual wxString GetPhysicalFilePath(FilePath strFilePath){return LogicalToPhysical(strFilePath);}
+
/** Peuple le Drapeau des disques.*/
void PopulateDrives();
|