Index: src/ch/DestPath.cpp
===================================================================
diff -u -N -rd5c3edd0d167db9b5d47d04248820fda49499a5e -r5057e08b0cc064972abeb94a488e5f12d9db14a0
--- src/ch/DestPath.cpp	(.../DestPath.cpp)	(revision d5c3edd0d167db9b5d47d04248820fda49499a5e)
+++ src/ch/DestPath.cpp	(.../DestPath.cpp)	(revision 5057e08b0cc064972abeb94a488e5f12d9db14a0)
@@ -18,7 +18,6 @@
 ***************************************************************************/
 #include "stdafx.h"
 #include "DestPath.h"
-//#include "../libicpf/file.h"
 
 #ifdef _DEBUG
 #define new DEBUG_NEW
@@ -74,19 +73,3 @@
 
 	GetDriveData(m_strPath, &m_iDriveNumber, &m_uiDriveType);
 }
-
-void CDestPath::Serialize(icpf::archive& ar)
-{
-	if (ar.is_storing())
-	{
-		ar<<m_strPath;
-		ar<<m_iDriveNumber;
-		ar<<m_uiDriveType;
-	}
-	else
-	{
-		ar>>m_strPath;
-		ar>>m_iDriveNumber;
-		ar>>m_uiDriveType;
-	}
-}