Sharing logic across different platforms

Posted by Pranz on Stack Overflow See other posts from Stack Overflow or by Pranz
Published on 2010-05-14T20:06:21Z Indexed on 2010/05/14 20:14 UTC
Read the original article Hit count: 156

Filed under:
|
|

Hello all, We have a business logic that works with the file systems on OS that we want to implement on both Linux and Windows platforms. The language we have selected is Python for Linux and C# for Windows. GUI is not a priority for now. We were looking for ways to abstract the business logic in a way that we dont have to repeat the business logic (ofcourse I understand since it is related to file system, some code will differ from platform to platform).

Any ideas on how to implement it? Is C/C++ the only option. We dont want to use Java.

Thanks, Pranz

© Stack Overflow or respective owner

Related posts about code

Related posts about design