Hi all,
I have to create a server(java) - client(c++) system, both server and client will have to work with objects (data types) wich are the same for the client and for the server, for example a car object will be created on the client side and then send to the server where aditional calculations will be done on the car object. What i would like to do is to create one universal implementation of the car object and than use this implementation within the server and the client. First i thought about creating a dll (in c++) with all data types wich are same for the client and the server, but this solution has a drawback. Because this solution only works under Windows OS and i have to support Win,Mac,Linux. So is there a multiplatform solution for my problem ?
I give my thanks to all your replyes.