Porting MFC to UNIX
-
I am trying to port some C++ code from PC with some classes using MFC over to UNIX, I dont really want to re-write all of the MFC classes that it uses and was wondering if anyone has seen, these classes re-written in standartd c++ classes are: CMapStringToPtr CMapStringToString CRect CMapWordToPtr CObArray CPtrArray CMapStringToOb CObject CStringList CPtrList CString CMap Clist CArrayCInstructionList any help with this would be greatly appreciated michael.fellows@amsjv.com
-
I am trying to port some C++ code from PC with some classes using MFC over to UNIX, I dont really want to re-write all of the MFC classes that it uses and was wondering if anyone has seen, these classes re-written in standartd c++ classes are: CMapStringToPtr CMapStringToString CRect CMapWordToPtr CObArray CPtrArray CMapStringToOb CObject CStringList CPtrList CString CMap Clist CArrayCInstructionList any help with this would be greatly appreciated michael.fellows@amsjv.com
Most of those are found in STL, which is what you will have to learn before porting. Some have no direct companion, and you will have to write a port or change the code. // Rock